blob: 192b3ba5c04854f73a5168e42cf5f694034a6545 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@setlocal
@pushd %~dp0
nuget restore
msbuild -p:Configuration=Release -t:Restore
msbuild -p:Configuration=Release src\test\WixToolsetTest.Sql\WixToolsetTest.Sql.csproj
msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Sql.wixext.csproj
@popd
@endlocal
|