We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61649e6 commit 966ae83Copy full SHA for 966ae83
Build.ps1
@@ -85,9 +85,11 @@ function CreateNuGetPackage {
85
}
86
87
if ([string]::IsNullOrWhitespace($versionSuffix)) {
88
+ dotnet pack .\src\JsonApiDotNetCore.SourceGenerators -c Release -o .\artifacts
89
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts
90
91
else {
92
+ dotnet pack .\src\JsonApiDotNetCore.SourceGenerators -c Release -o .\artifacts --version-suffix=$versionSuffix
93
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$versionSuffix
94
95
0 commit comments