Converted Discord.Net to a metapackage

This commit is contained in:
RogueException
2017-01-26 10:43:32 -04:00
parent c10ebeef57
commit 34139c9b59
11 changed files with 40 additions and 48 deletions

View File

@@ -1,24 +0,0 @@
<Project ToolsVersion="15.0" Sdk="Microsoft.NET.Sdk" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Description>An aynchronous API wrapper for Discord. This metapackage includes all of the optional Discord.Net components.</Description>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionSuffix Condition="'$(BuildNumber)' == ''">rc-dev</VersionSuffix>
<VersionSuffix Condition="'$(BuildNumber)' != ''">rc-$(BuildNumber)</VersionSuffix>
<TargetFrameworks>netstandard1.1;netstandard1.3</TargetFrameworks>
<AssemblyName>Discord.Net</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</RootNamespace>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
<ProjectReference Include="..\Discord.Net.Rest\Discord.Net.Rest.csproj" />
<ProjectReference Include="..\Discord.Net.WebSocket\Discord.Net.WebSocket.csproj" />
<ProjectReference Include="..\Discord.Net.Rpc\Discord.Net.Rpc.csproj" />
<ProjectReference Include="..\Discord.Net.Commands\Discord.Net.Commands.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,22 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Discord.Net</id>
<version>1.0.0-rc-$build$</version>
<title>Discord.Net</title>
<authors>RogueException</authors>
<owners>RogueException</owners>
<description>An aynchronous API wrapper for Discord. This metapackage includes all of the optional Discord.Net components.</description>
<tags>discord;discordapp</tags>
<projectUrl>https://github.com/RogueException/Discord.Net</projectUrl>
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<dependencies>
<dependency id="Discord.Net.Core" version="1.0.0-rc-$build$" />
<dependency id="Discord.Net.Rest" version="1.0.0-rc-$build$" />
<dependency id="Discord.Net.WebSocket" version="1.0.0-rc-$build$" />
<dependency id="Discord.Net.Rpc" version="1.0.0-rc-$build$" />
<dependency id="Discord.Net.Commands" version="1.0.0-rc-$build$" />
</dependencies>
</metadata>
</package>