diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-02 20:19:27 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-03 10:58:32 -0600 |
commit | fa97c540035df80723a60e870f90bbeeab02bb3b (patch) | |
tree | 1163713d576dcc0005facc0c09384ac216b6006a | |
parent | 27766738dc62ec95f89af347eebb1723a5943848 (diff) | |
download | wix-fa97c540035df80723a60e870f90bbeeab02bb3b.tar.gz wix-fa97c540035df80723a60e870f90bbeeab02bb3b.tar.bz2 wix-fa97c540035df80723a60e870f90bbeeab02bb3b.zip |
Ignore C26812 warning for C style enums.
-rw-r--r-- | src/Cpp.Build.props | 8 | ||||
-rw-r--r-- | src/CustomizedNativeRecommendedRules.ruleset | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/Cpp.Build.props b/src/Cpp.Build.props index 44a042c7..4d2da36f 100644 --- a/src/Cpp.Build.props +++ b/src/Cpp.Build.props | |||
@@ -6,12 +6,20 @@ | |||
6 | <Platform Condition=" '$(Platform)' == '' OR '$(Platform)' == 'AnyCPU' ">Win32</Platform> | 6 | <Platform Condition=" '$(Platform)' == '' OR '$(Platform)' == 'AnyCPU' ">Win32</Platform> |
7 | <IntDir>$(BaseIntermediateOutputPath)$(Configuration)\$(Platform)\</IntDir> | 7 | <IntDir>$(BaseIntermediateOutputPath)$(Configuration)\$(Platform)\</IntDir> |
8 | <OutDir>$(OutputPath)$(Platform)\</OutDir> | 8 | <OutDir>$(OutputPath)$(Platform)\</OutDir> |
9 | |||
10 | <!-- NBGV properties --> | ||
11 | <AssemblyCompany>$(Company)</AssemblyCompany> | ||
12 | <AssemblyCopyright>$(Copyright)</AssemblyCopyright> | ||
9 | </PropertyGroup> | 13 | </PropertyGroup> |
10 | 14 | ||
11 | <PropertyGroup Condition="'$(WindowsTargetPlatformVersion)'=='' AND '$(VisualStudioVersion)'>='15.0'"> | 15 | <PropertyGroup Condition="'$(WindowsTargetPlatformVersion)'=='' AND '$(VisualStudioVersion)'>='15.0'"> |
12 | <WindowsTargetPlatformVersion>$([Microsoft.Build.Utilities.ToolLocationHelper]::GetLatestSDKTargetPlatformVersion('Windows', '10.0'))</WindowsTargetPlatformVersion> | 16 | <WindowsTargetPlatformVersion>$([Microsoft.Build.Utilities.ToolLocationHelper]::GetLatestSDKTargetPlatformVersion('Windows', '10.0'))</WindowsTargetPlatformVersion> |
13 | </PropertyGroup> | 17 | </PropertyGroup> |
14 | 18 | ||
19 | <PropertyGroup> | ||
20 | <CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CustomizedNativeRecommendedRules.ruleset</CodeAnalysisRuleSet> | ||
21 | </PropertyGroup> | ||
22 | |||
15 | <ItemDefinitionGroup> | 23 | <ItemDefinitionGroup> |
16 | <ClCompile> | 24 | <ClCompile> |
17 | <DisableSpecificWarnings>$(DisableSpecificCompilerWarnings)</DisableSpecificWarnings> | 25 | <DisableSpecificWarnings>$(DisableSpecificCompilerWarnings)</DisableSpecificWarnings> |
diff --git a/src/CustomizedNativeRecommendedRules.ruleset b/src/CustomizedNativeRecommendedRules.ruleset new file mode 100644 index 00000000..142b141c --- /dev/null +++ b/src/CustomizedNativeRecommendedRules.ruleset | |||
@@ -0,0 +1,8 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <RuleSet Name="Customized Microsoft Native Recommended Rules" Description="Microsoft Native Recommended Rules, -C26812" ToolsVersion="16.0"> | ||
3 | <Include Path="nativerecommendedrules.ruleset" Action="Default" /> | ||
4 | <Rules AnalyzerId="Microsoft.Analyzers.NativeCodeAnalysis" RuleNamespace="Microsoft.Rules.Native"> | ||
5 | <!-- We need C style enums since we support BAs written in C --> | ||
6 | <Rule Id="C26812" Action="None" /> | ||
7 | </Rules> | ||
8 | </RuleSet> \ No newline at end of file | ||