blob: 93dc905f96bb7ab57193218fc12859902e154834 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@setlocal
@pushd %~dp0
@set _P=%~dp0build\Release\publish
dotnet publish -c Release -o %_P% -r win-x86 src\wix
dotnet publish -c Release -o %_P% -r win-x86 src\WixToolset.BuildTasks
dotnet pack -c Release src\WixToolset.Core.InternalPackage
@popd
@endlocal
|