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 f214a89 commit 49feb55Copy full SHA for 49feb55
Build.ps1
@@ -3,4 +3,6 @@ $revision = "{0:D4}" -f [convert]::ToInt32($revision, 10)
3
4
dotnet restore .\src\JsonApiDotNetCore\JsonApiDotNetCore.csproj
5
dotnet build .\src\JsonApiDotNetCore -c Release
6
-dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$revision
+
7
+If($env:APPVEYOR_REPO_TAG) { dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts }
8
+Else { dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$revision }
0 commit comments