diff options
Diffstat (limited to 'src/ext/Bal/appveyor.cmd')
-rw-r--r-- | src/ext/Bal/appveyor.cmd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ext/Bal/appveyor.cmd b/src/ext/Bal/appveyor.cmd new file mode 100644 index 00000000..f4e9c26e --- /dev/null +++ b/src/ext/Bal/appveyor.cmd | |||
@@ -0,0 +1,17 @@ | |||
1 | @setlocal | ||
2 | @pushd %~dp0 | ||
3 | @set _C=Release | ||
4 | |||
5 | nuget restore || exit /b | ||
6 | |||
7 | msbuild -p:Configuration=%_C% -Restore || exit /b | ||
8 | msbuild -p:Configuration=%_C% src\test\examples\examples.proj || exit /b | ||
9 | |||
10 | dotnet test -c %_C% --no-build src\test\WixToolsetTest.Bal || exit /b | ||
11 | dotnet test -c %_C% --no-build src\test\WixToolsetTest.ManagedHost || exit /b | ||
12 | |||
13 | msbuild -p:Configuration=%_C% -p:NoBuild=true -t:Pack src\wixext\WixToolset.Bal.wixext.csproj || exit /b | ||
14 | msbuild -p:Configuration=%_C% -p:NoBuild=true -t:Pack src\WixToolset.Mba.Host\WixToolset.Mba.Host.csproj || exit /b | ||
15 | |||
16 | @popd | ||
17 | @endlocal | ||