| 1 | @setlocal |
| 2 | @pushd %~dp0 |
| 3 | |
| 4 | @set _C=Debug |
| 5 | @set _L=%~dp0..\..\..\build\logs |
| 6 | |
| 7 | :parse_args |
| 8 | @if /i "%1"=="release" set _C=Release |
| 9 | @if /i "%1"=="inc" set _INC=1 |
| 10 | @if /i "%1"=="clean" set _CLEAN=1 |
| 11 | @if not "%1"=="" shift & goto parse_args |
| 12 | |
| 13 | @set _B=%~dp0..\..\..\build\NetFx.wixext\%_C% |
| 14 | |
| 15 | :: Clean |
| 16 | |
| 17 | @if "%_INC%"=="" call :clean |
| 18 | @if NOT "%_CLEAN%"=="" goto :end |
| 19 | |
| 20 | @echo NetFx.wixext build %_C% |
| 21 | |
| 22 | :: Restore |
| 23 | nuget restore netcoresearch\packages.config || exit /b |
| 24 | |
| 25 | :: Build |
| 26 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -warnaserror -bl:%_L%\ext_netfx_build.binlog || exit /b |
| 27 | |
| 28 | :: Test |
| 29 | dotnet test ^ |
| 30 | %_B%\net6.0\WixToolsetTest.NetFx.dll ^ |
| 31 | --nologo -l "trx;LogFileName=%_L%\TestResults\netfx.wixext.trx" || exit /b |
| 32 | |
| 33 | :: Pack |
| 34 | msbuild -t:Pack -p:Configuration=%_C% -tl -nologo -warnaserror -p:NoBuild=true wixext\WixToolset.Netfx.wixext.csproj || exit /b |
| 35 | |
| 36 | @goto :end |
| 37 | |
| 38 | :clean |
| 39 | @rd /s/q "..\..\build\NetFx.wixext" 2> nul |
| 40 | @del "..\..\build\artifacts\WixToolset.NetFx.wixext.*.nupkg" 2> nul |
| 41 | @del "%_L%\ext_netfx_build.binlog" 2> nul |
| 42 | @del "%_L%\TestResults\netfx.wixext.trx" 2> nul |
| 43 | @rd /s/q "%USERPROFILE%\.nuget\packages\wixtoolset.netfx.wixext" 2> nul |
| 44 | @exit /b |
| 45 | |
| 46 | :end |
| 47 | @popd |
| 48 | @endlocal |