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 b31c89e commit c8af1edCopy full SHA for c8af1ed
Build.ps1
@@ -1,12 +1,13 @@
1
$revision = @{ $true = $env:APPVEYOR_BUILD_NUMBER; $false = 1 }[$env:APPVEYOR_BUILD_NUMBER -ne $NULL];
2
$revision = "{0:D4}" -f [convert]::ToInt32($revision, 10)
3
4
-dotnet restore .\src\JsonApiDotNetCore\JsonApiDotNetCore.csproj
5
-dotnet build .\src\JsonApiDotNetCore -c Release
+dotnet restore
6
7
dotnet test ./test/JsonApiDotNetCoreExampleTests/JsonApiDotNetCoreExampleTests.csproj
8
dotnet test ./test/NoEntityFrameworkTests/NoEntityFrameworkTests.csproj
9
+dotnet build .\src\JsonApiDotNetCore -c Release
10
+
11
echo "APPVEYOR_REPO_TAG: $env:APPVEYOR_REPO_TAG"
12
echo "VERSION-SUFFIX: alpha1-$revision"
13
0 commit comments