diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-09-22 07:48:11 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-09-22 07:48:11 -0700 |
| commit | 2df223aa79242822bba2c22dd842d8b5fc94c04d (patch) | |
| tree | 1dbf08ba2850a612b5e604ad941bd88f52bf0b3c /src | |
| parent | 6b51e3b2bfd321f98e855141eb4b15a75bcd8c16 (diff) | |
| download | wix-2df223aa79242822bba2c22dd842d8b5fc94c04d.tar.gz wix-2df223aa79242822bba2c22dd842d8b5fc94c04d.tar.bz2 wix-2df223aa79242822bba2c22dd842d8b5fc94c04d.zip | |
Use batch file to execute wix CLI
Diffstat (limited to 'src')
| -rw-r--r-- | src/wix/wix.cmd | 3 | ||||
| -rw-r--r-- | src/wix/wix.csproj | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/wix/wix.cmd b/src/wix/wix.cmd new file mode 100644 index 00000000..a0064ed7 --- /dev/null +++ b/src/wix/wix.cmd | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | @setlocal | ||
| 2 | @set _D=%~dpn0.dll | ||
| 3 | @dotnet %_D% %* \ No newline at end of file | ||
diff --git a/src/wix/wix.csproj b/src/wix/wix.csproj index 5018bcd4..f9bd6704 100644 --- a/src/wix/wix.csproj +++ b/src/wix/wix.csproj | |||
| @@ -14,6 +14,10 @@ | |||
| 14 | </PropertyGroup> | 14 | </PropertyGroup> |
| 15 | 15 | ||
| 16 | <ItemGroup> | 16 | <ItemGroup> |
| 17 | <Content Include="wix.cmd" CopyToOutputDirectory="PreserveNewest" /> | ||
| 18 | </ItemGroup> | ||
| 19 | |||
| 20 | <ItemGroup> | ||
| 17 | <ProjectReference Include="..\WixToolset.Core\WixToolset.Core.csproj" /> | 21 | <ProjectReference Include="..\WixToolset.Core\WixToolset.Core.csproj" /> |
| 18 | 22 | ||
| 19 | <ProjectReference Include="$(WixToolsetRootFolder)\Data\src\WixToolset.Data\WixToolset.Data.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Data\src\WixToolset.Data\WixToolset.Data.csproj') " /> | 23 | <ProjectReference Include="$(WixToolsetRootFolder)\Data\src\WixToolset.Data\WixToolset.Data.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Data\src\WixToolset.Data\WixToolset.Data.csproj') " /> |
