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.Rest.csproj 981 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="../../Discord.Net.targets" />
  3. <PropertyGroup>
  4. <AssemblyName>Discord.Net.Rest</AssemblyName>
  5. <RootNamespace>Discord.Rest</RootNamespace>
  6. <Description>A core Discord.Net library containing the REST client and models.</Description>
  7. <TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net45;netstandard1.1;netstandard1.3</TargetFrameworks>
  8. <TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard1.1;netstandard1.3</TargetFrameworks>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
  12. </ItemGroup>
  13. <ItemGroup Condition=" '$(TargetFramework)' != 'net45' ">
  14. <PackageReference Include="System.Net.Http" Version="4.3.2" />
  15. <!-- https://github.com/dotnet/corefx/issues/19535 -->
  16. </ItemGroup>
  17. <ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
  18. <Reference Include="System.Net.Http" />
  19. </ItemGroup>
  20. </Project>