14d959834f
* xunit unit tests * most pass with formatting * convert objects to xunit * remove nunit * format * merge fixes * switch objects to fluent assertions * update to fluent assertions * more FA * convert all to FA * Format * Fix tests * formatting * hopefully made credential test better * Catch more specific exception * use another more specific exception * Fix tests * update to xunit * update packages
19 lines
722 B
XML
19 lines
722 B
XML
<Project>
|
|
<PropertyGroup Condition="'$(IsTestProject)' == 'true'">
|
|
<NoWarn>
|
|
$(NoWarn);
|
|
<!-- Things we need to test -->
|
|
CS0618;CA1034;CA2201;CA1051;CA1040;CA1724;
|
|
IDE0044;IDE0130;CA1508;
|
|
<!-- Analysers that provide no tangeable value to a test project -->
|
|
CA5394;CA2007;CA1852;CA1819;CA1711;CA1063;CA1816;CA2234;CS8618;CA1054;CA1810;CA2208;CA1019;CA1831;
|
|
</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="DeepClean">
|
|
<Message Text="Deep clean of $(MSBuildProjectName).csproj" Importance="high"/>
|
|
<RemoveDir Directories="$(BaseIntermediateOutputPath)"/>
|
|
<RemoveDir Directories="$(BaseOutputPath)"/>
|
|
</Target>
|
|
</Project>
|