diff options
author | Rob Mensching <rob@firegiant.com> | 2018-08-11 01:05:03 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2018-10-03 10:33:26 -0700 |
commit | ec569071fa5e547c598f30dea9258096663ce5d8 (patch) | |
tree | 2913f71c3ccb570e288a33296ea8951b26f4109d /src | |
parent | 84cb6c26c945fe031bbe36c666d0bbd6275d843b (diff) | |
download | wix-ec569071fa5e547c598f30dea9258096663ce5d8.tar.gz wix-ec569071fa5e547c598f30dea9258096663ce5d8.tar.bz2 wix-ec569071fa5e547c598f30dea9258096663ce5d8.zip |
Enable NCrunch support
Diffstat (limited to 'src')
-rw-r--r-- | src/Directory.Build.props | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 7cd6767f..9eacf3f5 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props | |||
@@ -1,12 +1,18 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 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. --> | 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 | 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 | --> | ||
4 | <Project> | 7 | <Project> |
5 | <PropertyGroup> | 8 | <PropertyGroup> |
6 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 9 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
7 | <BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)..\build\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath> | 10 | <EnableSourceLink Condition=" '$(NCrunch)' == '1' ">false</EnableSourceLink> |
8 | <BaseOutputPath>$(MSBuildThisFileDirectory)..\build\$(Configuration)\</BaseOutputPath> | 11 | |
9 | <OutputPath>$(BaseOutputPath)</OutputPath> | 12 | <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName> |
13 | <BaseOutputPath>$(MSBuildThisFileDirectory)..\build\</BaseOutputPath> | ||
14 | <BaseIntermediateOutputPath>$(BaseOutputPath)obj\$(ProjectName)\</BaseIntermediateOutputPath> | ||
15 | <OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath> | ||
10 | 16 | ||
11 | <Authors>WiX Toolset Team</Authors> | 17 | <Authors>WiX Toolset Team</Authors> |
12 | <Company>WiX Toolset</Company> | 18 | <Company>WiX Toolset</Company> |
@@ -18,5 +24,6 @@ | |||
18 | <WixToolsetRootFolder>$(MSBuildThisFileDirectory)..\..\</WixToolsetRootFolder> | 24 | <WixToolsetRootFolder>$(MSBuildThisFileDirectory)..\..\</WixToolsetRootFolder> |
19 | </PropertyGroup> | 25 | </PropertyGroup> |
20 | 26 | ||
27 | <Import Project="Cpp.Build.props" Condition=" '$(MSBuildProjectExtension)'=='.vcxproj' " /> | ||
21 | <Import Project="Custom.Build.props" Condition=" Exists('Custom.Build.props') " /> | 28 | <Import Project="Custom.Build.props" Condition=" Exists('Custom.Build.props') " /> |
22 | </Project> | 29 | </Project> |