diff options
author | Rob Mensching <rob@firegiant.com> | 2017-10-01 14:27:21 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-10-01 14:27:21 -0700 |
commit | 790281c4c4d87cdabb33d6659825f4b0ec285916 (patch) | |
tree | d9136ba57c894f71ec0e76528e394d606c8ba991 | |
parent | 87f5e82ab7f40631845c3a3a936d5417c94157d3 (diff) | |
download | wix-790281c4c4d87cdabb33d6659825f4b0ec285916.tar.gz wix-790281c4c4d87cdabb33d6659825f4b0ec285916.tar.bz2 wix-790281c4c4d87cdabb33d6659825f4b0ec285916.zip |
Allow internal NuGet Package's wix.targets path to be overridden
-rw-r--r-- | src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.props b/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.props index 7448d192..24aab72e 100644 --- a/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.props +++ b/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.props | |||
@@ -3,6 +3,6 @@ | |||
3 | 3 | ||
4 | <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> | 4 | <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <WixTargetsPath>$(MSBuildThisFileDirectory)..\tools\wix.targets</WixTargetsPath> | 6 | <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildThisFileDirectory)..\tools\wix.targets</WixTargetsPath> |
7 | </PropertyGroup> | 7 | </PropertyGroup> |
8 | </Project> | 8 | </Project> |