Skip to content

TargetFrameworkVersion

Andrey Lipatkin edited this page Feb 8, 2015 · 1 revision

What this rule is about?

TODO

Why should I enable this rule?

TODO

How to enable/configure this rule

<Rules>
...
<TargetFrameworkVersion enabled="true">
  <FrameworkVersion>4.0</FrameworkVersion>
  <FrameworkVersion>4.5</FrameworkVersion>
  <Exception>
    <Project>ProjectToExcludeFromCheck.csproj</Project>
  </Exception>
  <Exception>
    <Project>ProjectCanHaveTargetVersion3_5.csproj</Project>
    <FrameworkVersion>3.5</FrameworkVersion>
  </Exception>
</TargetFrameworkVersion>
...
</Rules>