/Properties/AssemblyInfo.cs öğesini stylecop denetiminden hariç tutmak istiyorum. Bunu yapabilir miyiz? problemi, nant ile entegre bir stilopam var. Nantta, ürün bilgisini damgalamaktayım, böylece Montaj bilgisinden gelen bilgiler değişiyor ve nant e-postasında uyarı veriyor. Nant tümleştirme için stylecopcmd kullanıyorum.Dosyayı stilkop denetiminden hariç tut
5
A
cevap
9
Bunu yapmanın birkaç yolu vardır. Önerilen yöntem file lists ile. here belgelendiği gibi
<StyleCopSettings Version="4.3">
<SourceFileList>
<SourceFile>AssemblyInfo.cs</SourceFile>
<Settings>
<GlobalSettings>
<BooleanProperty Name="RulesEnabledByDefault">False</BooleanProperty>
</GlobalSettings>
</Settings>
</SourceFileList>
</StyleCopSettings>
Alternatif proje dosyasında ExcludeFromStyleCop
ayarını kullanabilirsiniz: İşte bir örnek
<Compile Include="AssemblyInfo.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>