Browse Source

Fixed ValueTuple.

pull/1569/head
AraHaan GitHub 4 years ago
parent
commit
93dd81ed6a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/Discord.Net.Core/Discord.Net.Core.csproj

+ 2
- 0
src/Discord.Net.Core/Discord.Net.Core.csproj View File

@@ -10,6 +10,8 @@
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard2.0;netstandard2.1</TargetFrameworks> <TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard2.0;netstandard2.1</TargetFrameworks>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<!-- System.ValueTuple is in .NET Framework 4.7+, older versions need the package. -->
<PackageReference Include="System.ValueTuple" Version="4.5.0" Condition="'$(TargetFramework)' == 'net461'" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<!-- oddly enough supports .NET Core 2.1+ and other frameworks. --> <!-- oddly enough supports .NET Core 2.1+ and other frameworks. -->
<PackageReference Include="System.Collections.Immutable" Version="5.0.0" /> <PackageReference Include="System.Collections.Immutable" Version="5.0.0" />


Loading…
Cancel
Save