11 lines
431 B
XML
11 lines
431 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
</PropertyGroup>
|
|
<Import Project="../LibCommon.props" />
|
|
<PropertyGroup>
|
|
<NoWarn>$(NoWarn);MA0060;SA1413;SA1514</NoWarn> <!-- MA0060 is for implicitly discarded Stream.Read return value and should really be fixed; SA1413 and SA1514 are harmless lint rules -->
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
</Project>
|