File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -37,20 +37,20 @@ If($env:APPVEYOR_REPO_TAG -eq $true) {
3737 Write-Output " VERSION-SUFFIX: $revision "
3838
3939 IF ([string ]::IsNullOrWhitespace($revision )){
40- Write-Output " RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts"
41- dotnet pack .\src\JsonApiDotNetCore - c Release - o .\artifacts
40+ Write-Output " RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --include-symbols "
41+ dotnet pack .\src\JsonApiDotNetCore - c Release - o .\artifacts -- include - symbols
4242 CheckLastExitCode
4343 }
4444 Else {
45- Write-Output " RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$revision "
46- dotnet pack .\src\JsonApiDotNetCore - c Release - o .\artifacts -- version- suffix= $revision
45+ Write-Output " RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$revision --include-symbols "
46+ dotnet pack .\src\JsonApiDotNetCore - c Release - o .\artifacts -- version- suffix= $revision -- include - symbols
4747 CheckLastExitCode
4848 }
4949}
5050Else {
51- $packageVersionSuffix = " alpha5 -$revision "
51+ $packageVersionSuffix = " beta1 -$revision "
5252 Write-Output " VERSION-SUFFIX: $packageVersionSuffix "
53- Write-Output " RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$packageVersionSuffix "
54- dotnet pack .\src\JsonApiDotNetCore - c Release - o .\artifacts -- version- suffix= $packageVersionSuffix
53+ Write-Output " RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$packageVersionSuffix --include-symbols "
54+ dotnet pack .\src\JsonApiDotNetCore - c Release - o .\artifacts -- version- suffix= $packageVersionSuffix -- include - symbols
5555 CheckLastExitCode
5656}
You can’t perform that action at this time.
0 commit comments