21 lines
862 B
XML
21 lines
862 B
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<NoWarn>659</NoWarn>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFrameworkSubset>
|
|
</TargetFrameworkSubset>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.*" />
|
|
</ItemGroup>
|
|
</Project> |