aboutsummaryrefslogtreecommitdiff
path: root/appveyor.cmd
blob: 84e1d13bad73913807a37b3912c5d7b9b288eeb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@setlocal
@pushd %~dp0

nuget restore || exit /b

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

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

msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.VisualStudio.wixext.csproj || exit /b

@popd
@endlocal