diff options
author | Rob Mensching <rob@firegiant.com> | 2018-10-02 15:24:48 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2018-10-03 23:48:24 -0700 |
commit | 49b1c073fd7aac252b636a813611930fc142cdc5 (patch) | |
tree | 48d4561d2e01a32a89555c96658a6f9de5e4cb1a /src/Cpp.Build.props | |
parent | 128c46049fb73f18edd248d2a6e80a933cbe2d80 (diff) | |
download | wix-49b1c073fd7aac252b636a813611930fc142cdc5.tar.gz wix-49b1c073fd7aac252b636a813611930fc142cdc5.tar.bz2 wix-49b1c073fd7aac252b636a813611930fc142cdc5.zip |
Standardize on props with NCrunch support
Diffstat (limited to 'src/Cpp.Build.props')
-rw-r--r-- | src/Cpp.Build.props | 4 |
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 | ||