aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--appveyor.cmd12
-rw-r--r--global.json2
2 files changed, 6 insertions, 8 deletions
diff --git a/appveyor.cmd b/appveyor.cmd
index 3ee1f17e..50bd492d 100644
--- a/appveyor.cmd
+++ b/appveyor.cmd
@@ -1,16 +1,14 @@
1@setlocal 1@setlocal
2@pushd %~dp0 2@pushd %~dp0
3 3
4nuget restore 4nuget restore || exit /b
5 5
6msbuild -p:Configuration=Release -t:Restore 6msbuild -p:Configuration=Release -t:Restore || exit /b
7 7
8msbuild -p:Configuration=Release src\test\WixToolsetTest.NetFx\WixToolsetTest.NetFx.csproj 8msbuild -p:Configuration=Release src\test\WixToolsetTest.Netfx\WixToolsetTest.Netfx.csproj || exit /b
9dotnet test -c Release --no-build src\test\WixToolsetTest.Netfx || exit /b
9 10
10msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.NetFx.wixext.csproj 11msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.NetFx.wixext.csproj || exit /b
11
12msbuild -p:Configuration=Release src\test\WixToolsetTest.Netfx\WixToolsetTest.Netfx.csproj
13dotnet test -c Release --no-build src\test\WixToolsetTest.Netfx
14 12
15@popd 13@popd
16@endlocal \ No newline at end of file 14@endlocal \ No newline at end of file
diff --git a/global.json b/global.json
index 77a81322..349951b0 100644
--- a/global.json
+++ b/global.json
@@ -1,5 +1,5 @@
1{ 1{
2 "msbuild-sdks": { 2 "msbuild-sdks": {
3 "WixToolset.Sdk": "4.0.0-build-0170" 3 "WixToolset.Sdk": "4.0.0-build-0171"
4 } 4 }
5} 5}