Skip to content

Commit eb2dc01

Browse files
author
Bart Koelman
authored
Merge pull request #842 from bart-degreed/revert-restore-source-stepping
Revert restore source stepping
2 parents 3d97bea + 2dad6d7 commit eb2dc01

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Build.ps1

Lines changed: 6 additions & 6 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 --include-symbols"
41-
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --include-symbols
40+
Write-Output "RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts"
41+
dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts
4242
CheckLastExitCode
4343
}
4444
Else {
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
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
4747
CheckLastExitCode
4848
}
4949
}
5050
Else {
5151
$packageVersionSuffix="beta1-$revision"
5252
Write-Output "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
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
5555
CheckLastExitCode
5656
}

0 commit comments

Comments
 (0)