Add package metadata

This commit is contained in:
Oliver Booth 2022-11-29 19:06:47 +00:00
parent cbaa5edd2e
commit 17fa114a98
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 27 additions and 0 deletions

View File

@ -4,7 +4,19 @@
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
<VersionPrefix>0.1.0</VersionPrefix>
<Authors>Oliver Booth</Authors>
<NeutralLanguage>en</NeutralLanguage>
<RepositoryUrl>https://github.com/oliverbooth/VpSharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Description>A modern Virtual Paradise SDK wrapper for .NET</Description>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl/>
<PackageTags>bot wrapper sdk dotnet wrapper-api wrapper-library virtual-paradise</PackageTags>
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' == ''">
@ -28,6 +40,21 @@
<PackageVersion>$(VersionPrefix)</PackageVersion>
</PropertyGroup>
<ItemGroup>
<None Include="..\icon.png">
<Pack>True</Pack>
<PackagePath/>
</None>
<None Include="..\LICENSE.md">
<Pack>True</Pack>
<PackagePath/>
</None>
<None Include="..\CHANGELOG.md">
<Pack>True</Pack>
<PackagePath/>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VpSharp\VpSharp.csproj"/>
</ItemGroup>