aboutsummaryrefslogtreecommitdiff
path: root/src/Cpp.Build.props
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-10-03 13:51:56 -0700
committerRob Mensching <rob@firegiant.com>2018-10-03 23:53:53 -0700
commitdf46bd7e832cb313ecb43479c4a48670f930f8d4 (patch)
tree67dd5d72755aa51e493762c49a138b9264e89bdd /src/Cpp.Build.props
parentce2a0057c5f5ca2068a0376dc2248e131933d1ce (diff)
downloadwix-df46bd7e832cb313ecb43479c4a48670f930f8d4.tar.gz
wix-df46bd7e832cb313ecb43479c4a48670f930f8d4.tar.bz2
wix-df46bd7e832cb313ecb43479c4a48670f930f8d4.zip
Standardize on props with NCrunch support
Diffstat (limited to 'src/Cpp.Build.props')
-rw-r--r--src/Cpp.Build.props4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Cpp.Build.props b/src/Cpp.Build.props
index 1e4d4cbc..296b36ca 100644
--- a/src/Cpp.Build.props
+++ b/src/Cpp.Build.props
@@ -3,8 +3,8 @@
3 3
4<Project> 4<Project>
5 <PropertyGroup> 5 <PropertyGroup>
6 <BaseOutputPath>$(OutputPath)</BaseOutputPath> 6 <Platform Condition=" '$(Platform)' == '' OR '$(Platform)' == 'AnyCPU' ">Win32</Platform>
7 <IntDir>$(BaseIntermediateOutputPath)$(Platform)\</IntDir> 7 <IntDir>$(BaseIntermediateOutputPath)$(Configuration)\$(Platform)\</IntDir>
8 <OutDir>$(OutputPath)$(Platform)\</OutDir> 8 <OutDir>$(OutputPath)$(Platform)\</OutDir>
9 </PropertyGroup> 9 </PropertyGroup>
10 10