aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
blob: 295607cb920c5ad93be4258585044c461d9a5786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@setlocal
@pushd %~dp0
@set _C=Release

nuget restore || exit /b

msbuild -p:Configuration=%_C% -t:Restore || exit /b

msbuild -p:Configuration=%_C% || exit /b

msbuild -p:Configuration=%_C% -t:Pack src\wixext\WixToolset.Bal.wixext.csproj || exit /b
msbuild -p:Configuration=%_C% -t:Pack src\WixToolset.Mba.Host\WixToolset.Mba.Host.csproj || exit /b

msbuild -p:Configuration=%_C% src\test\WixToolsetTest.Bal\WixToolsetTest.Bal.csproj || exit /b
dotnet test -c %_C% --no-build src\test\WixToolsetTest.Bal || exit /b

@popd
@endlocal