aboutsummaryrefslogtreecommitdiff
path: root/src/Directory.Build.props
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2018-12-16 11:57:53 -0600
committerSean Hall <r.sean.hall@gmail.com>2018-12-16 12:03:17 -0600
commit1b7a9d3734119e658c91ebd9742ab5a3ce94cce4 (patch)
tree0c4b710cd5665f2b24a4cefcab19626398e3d139 /src/Directory.Build.props
parent8464662dfcf3a6e4fafc33440b33236773d96a65 (diff)
downloadwix-1b7a9d3734119e658c91ebd9742ab5a3ce94cce4.tar.gz
wix-1b7a9d3734119e658c91ebd9742ab5a3ce94cce4.tar.bz2
wix-1b7a9d3734119e658c91ebd9742ab5a3ce94cce4.zip
Integrate into latest v4.
Still needs TupleDefinitions.
Diffstat (limited to 'src/Directory.Build.props')
-rw-r--r--src/Directory.Build.props29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/Directory.Build.props b/src/Directory.Build.props
new file mode 100644
index 00000000..9eacf3f5
--- /dev/null
+++ b/src/Directory.Build.props
@@ -0,0 +1,29 @@
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 Do NOT modify this file. Update the canonical version in Home\src\Directory.Build.props
5 then update all of the repos.
6-->
7<Project>
8 <PropertyGroup>
9 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
10 <EnableSourceLink Condition=" '$(NCrunch)' == '1' ">false</EnableSourceLink>
11
12 <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName>
13 <BaseOutputPath>$(MSBuildThisFileDirectory)..\build\</BaseOutputPath>
14 <BaseIntermediateOutputPath>$(BaseOutputPath)obj\$(ProjectName)\</BaseIntermediateOutputPath>
15 <OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath>
16
17 <Authors>WiX Toolset Team</Authors>
18 <Company>WiX Toolset</Company>
19 <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright>
20 <Product>WiX Toolset</Product>
21 </PropertyGroup>
22
23 <PropertyGroup>
24 <WixToolsetRootFolder>$(MSBuildThisFileDirectory)..\..\</WixToolsetRootFolder>
25 </PropertyGroup>
26
27 <Import Project="Cpp.Build.props" Condition=" '$(MSBuildProjectExtension)'=='.vcxproj' " />
28 <Import Project="Custom.Build.props" Condition=" Exists('Custom.Build.props') " />
29</Project>