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 393d600 commit eba9200Copy full SHA for eba9200
Build.ps1
@@ -81,12 +81,10 @@ function CreateNuGetPackage {
81
}
82
83
if ([string]::IsNullOrWhitespace($versionSuffix)) {
84
- Write-Output "RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts"
85
- dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts
+ dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts
86
87
else {
88
- Write-Output "RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$versionSuffix"
89
- dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$versionSuffix
+ dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$versionSuffix
90
91
92
CheckLastExitCode
0 commit comments