aboutsummaryrefslogtreecommitdiff
path: root/src/Cpp.Build.props
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-10-02 15:25:22 -0700
committerRob Mensching <rob@firegiant.com>2018-10-03 22:39:45 -0700
commit2116d017c9dd7757c2eb3a201673b22c366d2541 (patch)
tree82139a8071f0909ef36d27ed1dc99c35253dd2de /src/Cpp.Build.props
parent6d4851fe2646a8f13fe04cb005a1ff13de26247c (diff)
downloadwix-2116d017c9dd7757c2eb3a201673b22c366d2541.tar.gz
wix-2116d017c9dd7757c2eb3a201673b22c366d2541.tar.bz2
wix-2116d017c9dd7757c2eb3a201673b22c366d2541.zip
Enable NCrunch support
Diffstat (limited to 'src/Cpp.Build.props')
-rw-r--r--src/Cpp.Build.props5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Cpp.Build.props b/src/Cpp.Build.props
index 453aa442..296b36ca 100644
--- a/src/Cpp.Build.props
+++ b/src/Cpp.Build.props
@@ -3,9 +3,8 @@
3 3
4<Project> 4<Project>
5 <PropertyGroup> 5 <PropertyGroup>
6 <Platform Condition=" '$(Platform)' == 'AnyCPU' ">Win32</Platform> 6 <Platform Condition=" '$(Platform)' == '' OR '$(Platform)' == 'AnyCPU' ">Win32</Platform>
7 <BaseOutputPath>$(OutputPath)</BaseOutputPath> 7 <IntDir>$(BaseIntermediateOutputPath)$(Configuration)\$(Platform)\</IntDir>
8 <IntDir>$(BaseIntermediateOutputPath)$(Platform)\</IntDir>
9 <OutDir>$(OutputPath)$(Platform)\</OutDir> 8 <OutDir>$(OutputPath)$(Platform)\</OutDir>
10 </PropertyGroup> 9 </PropertyGroup>
11 10