You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
871 B
24 lines
871 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>netstandard2.0</TargetFramework> |
|
<IncludeBuildOutput>false</IncludeBuildOutput> |
|
<Nullable>enable</Nullable> |
|
<LangVersion>8</LangVersion> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
<NoWarn>1701;1702;RS2008</NoWarn> |
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
<NoWarn>1701;1702;RS2008</NoWarn> |
|
</PropertyGroup> |
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.0.1" PrivateAssets="all" /> |
|
<PackageReference Update="NETStandard.Library" PrivateAssets="all" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|