CookBook Extensions AspNetCore is a NuGet package which adds extensions for developing of ASP.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.CSharpExtended.csproj" --configuration Release
dotnet pack "..\src\CookBook.Extensions.CSharpExtended.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