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 d2fff47 commit 26b04e3Copy full SHA for 26b04e3
Build.ps1
@@ -7,5 +7,11 @@ dotnet build .\src\JsonApiDotNetCore -c Release
7
echo "APPVEYOR_REPO_TAG: $env:APPVEYOR_REPO_TAG"
8
echo "VERSION-SUFFIX: alpha1-$revision"
9
10
-If($env:APPVEYOR_REPO_TAG) { dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts }
11
-Else { dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=alpha1-$revision }
+If($env:APPVEYOR_REPO_TAG) {
+ echo "RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts "
12
+ dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts
13
+}
14
+Else {
15
+ echo "RUNNING dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=alpha1-$revision"
16
+ dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=alpha1-$revision
17
0 commit comments