CookBook Extensions Configuration is a NuGet package which adds extensions for configuring of .NET Core applications.
Ensure Docker Desktop is installed and open on your computer.
Ensure a Nuget Repository container is running.
Run fololowing commands to build and create a nuget package file:
dotnet build ".\src\CookBook.Extensions.Configuration.csproj" --configuration Release
dotnet pack ".\src\CookBook.Extensions.Configuration.csproj" --version-suffix Version -c Release
Or from the deploy
folder run the following command:
01_Nuget_Pack.bat
Run fololowing command to publish the nuget package file to the CookBook Nuget Repository server
:
dotnet nuget push ".\src\bin\Release\*.nupkg" --source CookBookPackages
Or from the deploy
folder run the following command:
02_Nuget_Release.bat