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.
|
- <Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Description>A core Discord.Net library containing the REST client and models.</Description>
- <VersionPrefix>1.0.0-rc</VersionPrefix>
- <TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks>
- <AssemblyName>Discord.Net.Rest</AssemblyName>
- <PackageTags>discord;discordapp</PackageTags>
- <PackageProjectUrl>https://github.com/RogueException/Discord.Net</PackageProjectUrl>
- <PackageLicenseUrl>http://opensource.org/licenses/MIT</PackageLicenseUrl>
- <RepositoryType>git</RepositoryType>
- <RepositoryUrl>git://github.com/RogueException/Discord.Net</RepositoryUrl>
- <RootNamespace>Discord.Rest</RootNamespace>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="**\*.cs" />
- <EmbeddedResource Include="**\*.resx" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
- </ItemGroup>
- <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
- <PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
- </ItemGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <NoWarn>$(NoWarn);CS1573;CS1591</NoWarn>
- <WarningsAsErrors>true</WarningsAsErrors>
- <GenerateDocumentationFile>true</GenerateDocumentationFile>
- </PropertyGroup>
- </Project>
|