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 c9bcf3b commit 74594a4Copy full SHA for 74594a4
Build.ps1
@@ -1,8 +1,6 @@
1
-exec { & dotnet restore .\src\JsonApiDotNetCore\JsonApiDotNetCore.csproj }
2
-
3
$revision = @{ $true = $env:APPVEYOR_BUILD_NUMBER; $false = 1 }[$env:APPVEYOR_BUILD_NUMBER -ne $NULL];
4
$revision = "{0:D4}" -f [convert]::ToInt32($revision, 10)
5
6
-exec { & dotnet build .\src\JsonApiDotNetCore -c Release }
7
8
-exec { & dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$revision }
+dotnet restore .\src\JsonApiDotNetCore\JsonApiDotNetCore.csproj
+dotnet build .\src\JsonApiDotNetCore -c Release
+dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$revision
0 commit comments