You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Discord.Net.BuildOverrides.csproj 748 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <LangVersion>9.0</LangVersion>
  4. <AssemblyName>Discord.Net.BuildOverrides</AssemblyName>
  5. <RootNamespace>Discord.BuildOverrides</RootNamespace>
  6. <Description>A Discord.Net extension adding a way to add build overrides for testing.</Description>
  7. <TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net6.0;net5.0;</TargetFrameworks>
  8. <TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">net6.0;net5.0;</TargetFrameworks>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  12. </ItemGroup>
  13. <ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
  14. <Reference Include="System.Net.Http" />
  15. </ItemGroup>
  16. </Project>