@@ -5,10 +5,19 @@ To include local NuGet packages, you need to download and install (and set the p
Get it from here: [nuget.org/downloads](https://www.nuget.org/downloads)
## Usage
For more detailed instructions see: [medium.com/@churi.vibhav/creating-and-using-a-local-nuget-package-repository](https://medium.com/@churi.vibhav/creating-and-using-a-local-nuget-package-repository-9f19475d6af8)
For more detailed instructions see: [Creatingandusing a localnugetpackagerepository](https://medium.com/@churi.vibhav/creating-and-using-a-local-nuget-package-repository-9f19475d6af8)
The basic steps are:
1. Go to the location of your NuGet package and add it to your local NuGet repository:
1. Create the NuGet package using Visual Studio or cake build script:
1. For Visual Studio:
* Create a .NET standard class library.
* In project properties > package => fill assembly details.
* In the solution explorer, right click the project => click "Pack".
2. For cake:
* Add our .nuspec file template, if not present
* Run the command .\build.ps1 -Configuration Release -Target Release to build the project under release
* Run the command .\build.ps1 -Configuration Release -Target NugetPack to pack it