aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-08-11 01:15:50 -0700
committerBob Arnson <bob@firegiant.com>2018-10-04 18:20:52 -0400
commit36a0bfb5a30a8786794cb41db46ee206435981d3 (patch)
tree3769219f56fcc1467bedad08c7b62b5e9220b1d2 /src
parentf6a736c4cbb800904c216ce5730ab02ab7fd4373 (diff)
downloadwix-36a0bfb5a30a8786794cb41db46ee206435981d3.tar.gz
wix-36a0bfb5a30a8786794cb41db46ee206435981d3.tar.bz2
wix-36a0bfb5a30a8786794cb41db46ee206435981d3.zip
Enable NCrunch support
Diffstat (limited to 'src')
-rw-r--r--src/Directory.Build.props15
-rw-r--r--src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.v3.ncrunchproject5
2 files changed, 16 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>
diff --git a/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.v3.ncrunchproject b/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.v3.ncrunchproject
new file mode 100644
index 00000000..7b5b2139
--- /dev/null
+++ b/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.v3.ncrunchproject
@@ -0,0 +1,5 @@
1<ProjectConfiguration>
2 <Settings>
3 <CopyReferencedAssembliesToWorkspace>True</CopyReferencedAssembliesToWorkspace>
4 </Settings>
5</ProjectConfiguration> \ No newline at end of file