Allow internal NuGet Package's wix.targets path to be overridden
Rob Mensching committed
Oct 1, 2017 at 14:27 UTC
790281c4c4d87cdabb33d6659825f4b0ec285916
1 file changed
+1
-1
src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.props
+1
-1
@@ -3,6 +3,6 @@
3
4
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
5
<PropertyGroup>
6
- <WixTargetsPath>$(MSBuildThisFileDirectory)..\tools\wix.targets</WixTargetsPath>
6
+ <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildThisFileDirectory)..\tools\wix.targets</WixTargetsPath>
7
</PropertyGroup>
8
</Project>