mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-11 04:38:24 -06:00
While working on another PR related to this I noticed that my VS generates `.vcxproj` files that are a bit different to the ones we have. This commit is a quick search & replace of all our project files to make (primarily) their `ToolsVersion` more in line with what VS does itself: No `ToolsVersion` for `.vcxproj`, `ToolsVersion="15.0"` for `.csproj` and `ToolsVersion="4.0"` for `.filters` files.
19 lines
954 B
XML
19 lines
954 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RuleSet Name="Console Rules" Description="These rules enforce static analysis on console code." ToolsVersion="17.0">
|
|
|
|
<Include Path="cppcorecheckrules.ruleset" Action="Error" />
|
|
|
|
<Rules AnalyzerId="Microsoft.Analyzers.NativeCodeAnalysis" RuleNamespace="Microsoft.Rules.Native">
|
|
<Rule Id="C6001" Action="Error" />
|
|
<Rule Id="C6011" Action="Error" />
|
|
<!-- We can't do dynamic cast because RTTI is off. -->
|
|
<!-- RTTI is off because Windows OS policies believe RTTI has too much binary size impact for the value and is less portable than RTTI-off modules. -->
|
|
<Rule Id="C26466" Action="None" />
|
|
<!-- This one has caught us off guard as it suddenly showed up. Re-enablement is going to be in #2941 -->
|
|
<Rule Id="C26814" Action="None" />
|
|
<!-- There are *so many* enums that should be enum classes. -->
|
|
<Rule Id="C26812" Action="None" />
|
|
</Rules>
|
|
|
|
</RuleSet>
|