Skip to content

Commit 3d97bea

Browse files
author
Bart Koelman
authored
Stepping into sources (downloaded from GitHub based on commit hash) used to work in v4-alpha5 but is broken in v4-beta1. This is almost impossible to test, but I suspect I broke it in 8cd45aa. (#841)
This reverts those changes.
1 parent 9584565 commit 3d97bea

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Build.ps1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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
}
5050
Else {
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
}

0 commit comments

Comments
 (0)