diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-11-16 16:47:07 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-11-17 19:06:00 -0600 |
commit | 7a942746bc535d319bdfa7f17025347ac6913ba2 (patch) | |
tree | 0ee11240191de3d2b685714b402c1e237f7561cf /src/Cpp.Build.props | |
parent | e71de85e4ec2899ecd01ac236603cf1dddc4a6c7 (diff) | |
download | wix-7a942746bc535d319bdfa7f17025347ac6913ba2.tar.gz wix-7a942746bc535d319bdfa7f17025347ac6913ba2.tar.bz2 wix-7a942746bc535d319bdfa7f17025347ac6913ba2.zip |
Ignore C26812 warning for C style enums.
Diffstat (limited to 'src/Cpp.Build.props')
-rw-r--r-- | src/Cpp.Build.props | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Cpp.Build.props b/src/Cpp.Build.props index ebbf9f71..4d2da36f 100644 --- a/src/Cpp.Build.props +++ b/src/Cpp.Build.props | |||
@@ -16,6 +16,10 @@ | |||
16 | <WindowsTargetPlatformVersion>$([Microsoft.Build.Utilities.ToolLocationHelper]::GetLatestSDKTargetPlatformVersion('Windows', '10.0'))</WindowsTargetPlatformVersion> | 16 | <WindowsTargetPlatformVersion>$([Microsoft.Build.Utilities.ToolLocationHelper]::GetLatestSDKTargetPlatformVersion('Windows', '10.0'))</WindowsTargetPlatformVersion> |
17 | </PropertyGroup> | 17 | </PropertyGroup> |
18 | 18 | ||
19 | <PropertyGroup> | ||
20 | <CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CustomizedNativeRecommendedRules.ruleset</CodeAnalysisRuleSet> | ||
21 | </PropertyGroup> | ||
22 | |||
19 | <ItemDefinitionGroup> | 23 | <ItemDefinitionGroup> |
20 | <ClCompile> | 24 | <ClCompile> |
21 | <DisableSpecificWarnings>$(DisableSpecificCompilerWarnings)</DisableSpecificWarnings> | 25 | <DisableSpecificWarnings>$(DisableSpecificCompilerWarnings)</DisableSpecificWarnings> |