aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.MSBuild/WixToolset.MSBuild.props
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-07-21 07:36:34 -0700
committerRob Mensching <rob@firegiant.com>2018-07-21 07:36:34 -0700
commit306f1d0c528cb6c151594ff96a41b5c01a5c4d9b (patch)
tree95deb0884b59decc082eae7adf5d65d45c5f3848 /src/WixToolset.MSBuild/WixToolset.MSBuild.props
parent6fc54af07b10742e883f3a39ef0114e55e6a36a0 (diff)
downloadwix-306f1d0c528cb6c151594ff96a41b5c01a5c4d9b.tar.gz
wix-306f1d0c528cb6c151594ff96a41b5c01a5c4d9b.tar.bz2
wix-306f1d0c528cb6c151594ff96a41b5c01a5c4d9b.zip
Integrate tools from Core project
Diffstat (limited to 'src/WixToolset.MSBuild/WixToolset.MSBuild.props')
-rw-r--r--src/WixToolset.MSBuild/WixToolset.MSBuild.props9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/WixToolset.MSBuild/WixToolset.MSBuild.props b/src/WixToolset.MSBuild/WixToolset.MSBuild.props
new file mode 100644
index 00000000..b1d207f4
--- /dev/null
+++ b/src/WixToolset.MSBuild/WixToolset.MSBuild.props
@@ -0,0 +1,9 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
4<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
5 <PropertyGroup>
6 <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' and '$(MSBuildRuntimeType)' == 'Core' ">$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\tools\netcoreapp2.1\wix.targets'))</WixTargetsPath>
7 <WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\tools\net461\wix.targets'))</WixTargetsPath>
8 </PropertyGroup>
9</Project>