-
Notifications
You must be signed in to change notification settings - Fork 64
Build nuget packages
Rodel E. Dagumampan edited this page May 3, 2020
·
11 revisions
dotnet pack ./yuniql-extensibility/Yuniql.Extensibility.csproj -p:packageversion=0.2.0 -c release -o nupkgs
dotnet nuget push ./nupkgs/Yuniql.Extensibility.0.2.0.nupkg -k APIKEY -s https://api.nuget.org/v3/index.json
dotnet pack ./yuniql-core/Yuniql.Core.csproj -p:packageversion=0.2.0 -c release -o nupkgs
dotnet nuget push ./nupkgs/Yuniql.Core.0.2.0.nupkg -k APIKEY -s https://api.nuget.org/v3/index.json
dotnet pack ./yuniql-sqlserver/Yuniql.SqlServer.csproj -p:packageversion=0.2.0 -c release -o nupkgs
dotnet nuget push ./nupkgs/Yuniql.SqlServer.0.2.0.nupkg -k APIKEY -s https://api.nuget.org/v3/index.json
dotnet pack ./yuniql-plugins/postgresql/src/Yuniql.PostgreSql.csproj -p:packageversion=0.2.0 -c release -o nupkgs
dotnet nuget push ./nupkgs/Yuniql.PostgreSql.0.2.0.nupkg -k APIKEY -s https://api.nuget.org/v3/index.json
dotnet pack ./src/Yuniql.MySql.csproj -p:packageversion=$version -c release -o nupkgs
dotnet nuget push ./nupkgs/Yuniql.MySql.$version.nupkg -k $apiKey -s https://api.nuget.org/v3/index.json
Help us improve further please create an issue.