blob: 2680403685ec14fc65d789e7639a3937a9f586a1 (
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.Sql\WixToolsetTest.Sql.csproj || exit /b
dotnet test -c Release --no-build src\test\WixToolsetTest.Sql || exit /b
msbuild -p:Configuration=Release -t:Pack src\wixext\WixToolset.Sql.wixext.csproj || exit /b
@popd
@endlocal
|