We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb71784 commit 6d5b449Copy full SHA for 6d5b449
Build.ps1
@@ -54,11 +54,14 @@ EnsurePsbuildInstalled
54
55
exec { & dotnet restore }
56
57
-Invoke-MSBuild
+#Invoke-MSBuild
58
59
$revision = @{ $true = $env:APPVEYOR_BUILD_NUMBER; $false = 1 }[$env:APPVEYOR_BUILD_NUMBER -ne $NULL];
60
$revision = "{0:D4}" -f [convert]::ToInt32($revision, 10)
61
62
+exec { & dotnet build .\src\JsonApiDotNetCore -c Release }
63
+exec { & dotnet build .\test\JsonApiDotNetCoreExampleTests -c Release }
64
+
65
exec { & dotnet test .\test\JsonApiDotNetCoreExampleTests -c Release }
66
67
exec { & dotnet pack .\src\JsonApiDotNetCore -c Release -o .\artifacts --version-suffix=$revision }
0 commit comments