summaryrefslogtreecommitdiff
path: root/src/Directory.Build.props
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-08-10 23:32:23 -0700
committerRob Mensching <rob@firegiant.com>2018-10-03 23:55:54 -0700
commit77b1c956e6037717f98ae01c2ff4e989c0252db8 (patch)
treef3682540cbfbe41780ec123d1d7f7df8674d3270 /src/Directory.Build.props
parent989686d2fdb3b46ed3c411f03ebdcdeeb9f42e15 (diff)
downloadwix-77b1c956e6037717f98ae01c2ff4e989c0252db8.tar.gz
wix-77b1c956e6037717f98ae01c2ff4e989c0252db8.tar.bz2
wix-77b1c956e6037717f98ae01c2ff4e989c0252db8.zip
Enable use of NCrunch
Diffstat (limited to 'src/Directory.Build.props')
-rw-r--r--src/Directory.Build.props15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/Directory.Build.props b/src/Directory.Build.props
index 63ad5d6e..9eacf3f5 100644
--- a/src/Directory.Build.props
+++ b/src/Directory.Build.props
@@ -1,16 +1,23 @@
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 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 10 <EnableSourceLink Condition=" '$(NCrunch)' == '1' ">false</EnableSourceLink>
8 <BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)..\build\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath> 11
9 <OutputPath>$(MSBuildThisFileDirectory)..\build\$(Configuration)\</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>
13 <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright> 19 <Copyright>Copyright (c) .NET Foundation and contributors. All rights reserved.</Copyright>
20 <Product>WiX Toolset</Product>
14 </PropertyGroup> 21 </PropertyGroup>
15 22
16 <PropertyGroup> 23 <PropertyGroup>