diff options
Diffstat (limited to 'appveyor.cmd')
-rw-r--r-- | appveyor.cmd | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/appveyor.cmd b/appveyor.cmd index 0071045f..e04f0de2 100644 --- a/appveyor.cmd +++ b/appveyor.cmd | |||
@@ -1,27 +1,27 @@ | |||
1 | @setlocal | 1 | @setlocal |
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | @set _P=%~dp0build\Release\publish | 3 | @set _C=Release |
4 | @set _P=%~dp0build\%_C%\publish | ||
4 | 5 | ||
5 | nuget restore | 6 | nuget restore |
6 | 7 | ||
7 | dotnet test -c Release src\test\WixToolsetTest.BuildTasks | 8 | dotnet test -c %_C% src\test\WixToolsetTest.BuildTasks |
8 | dotnet test -c Release src\test\WixToolsetTest.WixCop | 9 | dotnet test -c %_C% src\test\WixToolsetTest.WixCop |
9 | 10 | ||
10 | dotnet publish -c Release -o %_P%\dotnet-wix\ -f netcoreapp2.1 src\wix | 11 | dotnet publish -c %_C% -o %_P%\dotnet-wix\ -f netcoreapp2.1 src\wix |
11 | @rem dotnet publish -c Release -o %_P%\netfx-heat\ -f net461 src\heat | 12 | @rem dotnet publish -c %_C% -o %_P%\netfx-heat\ -f net461 src\heat |
12 | @rem dotnet publish -c Release -o %_P%\netfx-wix\ -f net461 src\wix | 13 | @rem dotnet publish -c %_C% -o %_P%\netfx-wix\ -f net461 src\wix |
13 | @rem dotnet publish -c Release -o %_P%\netfx-wixcop\ -f net461 src\wixcop | 14 | @rem dotnet publish -c %_C% -o %_P%\netfx-wixcop\ -f net461 src\wixcop |
14 | dotnet publish -c Release -o %_P%\WixToolset.MSBuild\net461\ -f net461 src\WixToolset.BuildTasks | 15 | dotnet publish -c %_C% -o %_P%\WixToolset.MSBuild\tools\net461\ -f net461 src\WixToolset.BuildTasks |
15 | dotnet publish -c Release -o %_P%\WixToolset.MSBuild\netcoreapp2.1\ -f netcoreapp2.1 src\WixToolset.BuildTasks | 16 | dotnet publish -c %_C% -o %_P%\WixToolset.MSBuild\tools\netcoreapp2.1\ -f netcoreapp2.1 src\WixToolset.BuildTasks |
17 | dotnet publish -c %_C% -o %_P%\WixToolset.MSBuild\ src\WixToolset.MSBuild | ||
16 | 18 | ||
17 | @rem dotnet publish -c Release -o %_P%\netcoreapp2.1 -r win-x86 src\wix | 19 | dotnet pack -c %_C% src\dotnet-wix |
18 | @rem dotnet publish -c Release -o %_P%\net461 -r win-x86 src\light | 20 | dotnet pack -c %_C% src\WixToolset.MSBuild |
19 | @rem dotnet publish -c Release -o %_P%\net461 -r win-x86 src\WixToolset.BuildTasks | ||
20 | 21 | ||
21 | dotnet pack -c Release src\dotnet-wix | 22 | dotnet test -c %_C% src\test\WixToolsetTest.MSBuild |
22 | dotnet pack -c Release src\WixToolset.MSBuild | ||
23 | 23 | ||
24 | msbuild -p:Configuration=Release .\src\ThmViewerPackage\ThmViewerPackage.wixproj | 24 | msbuild -p:Configuration=%_C% .\src\ThmViewerPackage\ThmViewerPackage.wixproj |
25 | 25 | ||
26 | @popd | 26 | @popd |
27 | @endlocal | 27 | @endlocal |