Skip to content

Build nuget packages

Rodel E. Dagumampan edited this page May 3, 2020 · 11 revisions

Build and publish Yuniql.Extensibility

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

Build and publish Yuniql.Core

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

Build and publish Yuniql.SqlServer

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

Build and publish Yuniql.PostgreSql

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

Build and publish Yuniql.MySql

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

Found bugs?

Help us improve further please create an issue.