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.targets 1.2 kB

1234567891011121314151617181920
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <VersionPrefix>1.0.0</VersionPrefix>
  4. <VersionSuffix>rc</VersionSuffix>
  5. <VersionSuffix Condition="'$(BuildNumber)' == ''">$(VersionSuffix)-dev</VersionSuffix>
  6. <VersionSuffix Condition="'$(BuildNumber)' != '' And $(IsTagBuild) != 'true'">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
  7. <Authors>RogueException</Authors>
  8. <PackageTags>discord;discordapp</PackageTags>
  9. <PackageProjectUrl>https://github.com/RogueException/Discord.Net</PackageProjectUrl>
  10. <PackageLicenseUrl>http://opensource.org/licenses/MIT</PackageLicenseUrl>
  11. <RepositoryType>git</RepositoryType>
  12. <RepositoryUrl>git://github.com/RogueException/Discord.Net</RepositoryUrl>
  13. <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  16. <NoWarn>$(NoWarn);CS1573;CS1591</NoWarn>
  17. <WarningsAsErrors>true</WarningsAsErrors>
  18. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  19. </PropertyGroup>
  20. </Project>