@joebigelow / wix-1 / commits / 2df223aa

Use batch file to execute wix CLI

Rob Mensching committed Sep 22, 2017 at 07:48 UTC 2df223aa79242822bba2c22dd842d8b5fc94c04d
2 files changed +7
src/wix/wix.cmd new
+3
@@ -0,0 +1,3 @@
1 +@setlocal
2 +@set _D=%~dpn0.dll
3 +@dotnet %_D% %*
\ No newline at end of file
src/wix/wix.csproj
+4
@@ -13,6 +13,10 @@
13 <NoWarn>NU1701</NoWarn>
14 </PropertyGroup>
15
16 + <ItemGroup>
17 + <Content Include="wix.cmd" CopyToOutputDirectory="PreserveNewest" />
18 + </ItemGroup>
19 +
20 <ItemGroup>
21 <ProjectReference Include="..\WixToolset.Core\WixToolset.Core.csproj" />
22