update wixproj to work with wix install on new build image
This commit is contained in:
parent
3687fcd2f2
commit
ce2fd04c3b
|
@ -14,8 +14,11 @@
|
|||
ProductVersion=$(ProductVersion);
|
||||
</DefineConstants>
|
||||
<DefineSolutionProperties>false</DefineSolutionProperties>
|
||||
<!-- This is sufficient for x86 and x64 but gets overwritten below for ARM64 -->
|
||||
<WixTargetsPath Condition="'$(WixTargetsPath)' == ''">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
|
||||
<!-- Assumes WixToolPath is an input provided at runtime -->
|
||||
<!-- If building x86/x64 MSI and have Wix 3.11 installed, can also try the below line instead -->
|
||||
<!-- WixTargetsPath Condition="'$(WixTargetsPath)' == ''">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath -->
|
||||
<WixTargetsPath>$(WixToolPath)Wix.targets</WixTargetsPath>
|
||||
<WixTasksPath>$(WixToolPath)wixtasks.dll</WixTasksPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
||||
|
@ -25,12 +28,6 @@
|
|||
</DefineConstants>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Platform)' == 'ARM64'">
|
||||
<!-- Assumes WixToolPath input is provided at runtime -->
|
||||
<WixTargetsPath>$(WixToolPath)Wix.targets</WixTargetsPath>
|
||||
<WixTasksPath>$(WixToolPath)wixtasks.dll</WixTasksPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<BindInputPaths Include="..\..\..\bin\$(Platform)\$(Configuration)" />
|
||||
</ItemGroup>
|
||||
|
|
Loading…
Reference in New Issue