Skip to content

Commit

Permalink
Enable C++ Core Check for static analysis
Browse files Browse the repository at this point in the history
Starting warning count for Debug Win32 is 407.
  • Loading branch information
randomascii committed Mar 23, 2018
1 parent 69fd379 commit 61f21d7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions UIforETW/UIforETW.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -76,27 +76,31 @@
<TargetName>$(ProjectName)_devdeb32</TargetName>
<CodeAnalysisRuleSet>StrictRules.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableCppCoreCheck>true</EnableCppCoreCheck>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<TargetName>$(ProjectName)_devdeb</TargetName>
<CodeAnalysisRuleSet>StrictRules.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis>false</RunCodeAnalysis>
<LinkIncremental>true</LinkIncremental>
<OutDir>$(SolutionDir)..\bin\</OutDir>
<EnableCppCoreCheck>true</EnableCppCoreCheck>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
<OutDir>$(SolutionDir)..\bin\</OutDir>
<TargetName>$(ProjectName)_devrel32</TargetName>
<CodeAnalysisRuleSet>StrictRules.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis>false</RunCodeAnalysis>
<EnableCppCoreCheck>true</EnableCppCoreCheck>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<TargetName>$(ProjectName)_devrel</TargetName>
<CodeAnalysisRuleSet>StrictRules.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis>false</RunCodeAnalysis>
<LinkIncremental>false</LinkIncremental>
<OutDir>$(SolutionDir)..\bin\</OutDir>
<EnableCppCoreCheck>true</EnableCppCoreCheck>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
Expand Down

0 comments on commit 61f21d7

Please sign in to comment.