Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 1014 Bytes

File metadata and controls

40 lines (25 loc) · 1014 Bytes

CookBook Extensions Configuration

About

CookBook Extensions Configuration is a NuGet package which adds extensions for configuring of .NET Core applications.

Prerequisites

Ensure Docker Desktop is installed and open on your computer.

Ensure a Nuget Repository container is running.

Pack

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

Release

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