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

nuget restore

msbuild -p:Configuration=Release -t:Restore

msbuild -p:Configuration=Release src\test\WixToolsetTest.Firewall\WixToolsetTest.Firewall.csproj

msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Firewall.wixext.csproj

msbuild -p:Configuration=Release src\test\WixToolsetTest.Firewall\WixToolsetTest.Firewall.csproj
dotnet test -c Release --no-build src\test\WixToolsetTest.Firewall

@popd
@endlocal