We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79f79dc commit ee64408Copy full SHA for ee64408
Build.ps1
@@ -83,11 +83,15 @@ function CreateNuGetPackage {
83
}
84
85
86
+
87
88
if ([string]::IsNullOrWhitespace($versionSuffix)) {
89
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts
90
+ dotnet pack .\src\JsonApiDotNetCore.OpenApi -c Release -o .\artifacts
91
92
else {
93
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$versionSuffix
94
+ dotnet pack .\src\JsonApiDotNetCore.OpenApi -c Release -o .\artifacts --version-suffix=$versionSuffix
95
96
97
CheckLastExitCode
0 commit comments