netstandard2.1 because the world apparently isn't ready yet

This commit is contained in:
JFronny 2020-11-19 19:37:33 +01:00
parent d80c1ac5a0
commit cae077a5cf
2 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@
<FileVersion>1.0.0.0</FileVersion>
<VersionSuffix>0.0</VersionSuffix>
<PackageVersion>1.1.$(VersionSuffix)</PackageVersion>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>bin\Debug\Core.xml</DocumentationFile>
@ -27,6 +27,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="protobuf-net" Version="3.0.62" />
<PackageReference Include="System.Text.Json" Version="5.0.0" />
</ItemGroup>
</Project>

View File

@ -67,7 +67,7 @@ namespace CC_Functions.AspNet
throw new JsonException();
}
Dictionary<Guid, TValue> dictionary = new();
Dictionary<Guid, TValue> dictionary = new Dictionary<Guid, TValue>();
while (reader.Read())
{