49 lines
2.0 KiB
XML
49 lines
2.0 KiB
XML
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
|
|
|
|
<PropertyGroup>
|
|
<Description>A core Discord.Net library containing the REST client and models.</Description>
|
|
<VersionPrefix>1.0.0-beta2</VersionPrefix>
|
|
<TargetFramework>netstandard1.3</TargetFramework>
|
|
<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>
|
|
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.3' ">$(PackageTargetFallback);dotnet5.4;dnxcore50;portable-net45+win8</PackageTargetFallback>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" />
|
|
<EmbeddedResource Include="**\*.resx" />
|
|
<EmbeddedResource Include="compiler\resources\**\*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Sdk">
|
|
<Version>1.0.0-alpha-20161104-2</Version>
|
|
<PrivateAssets>All</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="NETStandard.Library">
|
|
<Version>1.6.0</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.IO.FileSystem">
|
|
<Version>4.0.1</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
<NoWarn>$(NoWarn);CS1573;CS1591</NoWarn>
|
|
<WarningsAsErrors>true</WarningsAsErrors>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project>
|