My team are going to new version of resharper, it's 6.
And our old rules don't work on StyleCop 4.6. Our rules was worked on 4.5 version.
Any one know most easier way to convert StyleCop rules from version 4.3 (or 4.5) to 4.6?
This is solution:
<StyleCopSettings Version="105">
<Parsers>
<Parser ParserId="StyleCop.CSharp.CsParser">
<ParserSettings>
<CollectionProperty Name="GeneratedFileFilters">
<Value>\.g\.cs$</Value>
<Value>\.generated\.cs$</Value>
<Value>\.g\.i\.cs$</Value>
</CollectionProperty>
</ParserSettings>
</Parser>
</Parsers>
<Analyzers>
<!--------Here your old rules----->
</Analyzers>
</StyleCopSettings>
Thay also add two new rules: SA1517 and SA1518. That will be on your own.