Skip to content

SameNuGetPackageVersions

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

What this rule is about?

TODO

Why should I enable this rule?

TODO

How to enable/configure this rule

<Rules>
...
<SameNuGetPackageVersions enabled="true">
  <Exception>
    <Project>ProjectIsAllowedNotToReferenceSpecificPackage.csproj</Project>
    <Package>package-id</Package>
  </Exception>
  <Exception>
    <Package>second-package-id</Package>
  </Exception>
  <Exception>
    <Package>third-package-id</Package>
  </Exception>
</SameNuGetPackageVersions>
...
</Rules>