* Update deps, fix test warnings. * Support ns2.0 * Fix typo * Remove ns1.1 support * Net.Http and Net.Websockets.Client are not needed in ns2.0 * Move to net46 per volt * Remove ns1.3 constants
25 lines
1.4 KiB
XML
25 lines
1.4 KiB
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<VersionPrefix>2.0.0</VersionPrefix>
|
|
<VersionSuffix>beta2</VersionSuffix>
|
|
<Authors>RogueException</Authors>
|
|
<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>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(BuildNumber)' == '' ">
|
|
<VersionSuffix Condition=" '$(VersionSuffix)' != ''">$(VersionSuffix)-dev</VersionSuffix>
|
|
<VersionSuffix Condition=" '$(VersionSuffix)' == ''">dev</VersionSuffix>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(BuildNumber)' != '' And $(IsTagBuild) != 'true' ">
|
|
<VersionSuffix Condition=" '$(VersionSuffix)' != '' ">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
|
|
<VersionSuffix Condition=" '$(VersionSuffix)' == '' ">build-$(BuildNumber)</VersionSuffix>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<NoWarn>$(NoWarn);CS1573;CS1591</NoWarn>
|
|
<WarningsAsErrors>true</WarningsAsErrors>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
</Project> |