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