2022-11-27 20:43:21 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-11-29 15:46:13 +00:00
|
|
|
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
|
2022-11-27 20:43:21 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2022-11-29 19:06:47 +00:00
|
|
|
<LangVersion>10.0</LangVersion>
|
2024-01-20 17:30:34 +00:00
|
|
|
<VersionPrefix>1.0.0</VersionPrefix>
|
2022-11-29 19:06:47 +00:00
|
|
|
<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>
|
2022-11-27 20:43:21 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' == ''">
|
|
|
|
<Version>$(VersionPrefix)-$(VersionSuffix)</Version>
|
|
|
|
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
|
|
|
|
<FileVersion>$(VersionPrefix).0</FileVersion>
|
|
|
|
<PackageVersion>$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' != ''">
|
|
|
|
<Version>$(VersionPrefix)-$(VersionSuffix).$(BuildNumber)</Version>
|
|
|
|
<AssemblyVersion>$(VersionPrefix).$(BuildNumber)</AssemblyVersion>
|
|
|
|
<FileVersion>$(VersionPrefix).$(BuildNumber)</FileVersion>
|
|
|
|
<PackageVersion>$(VersionPrefix)-$(VersionSuffix).$(BuildNumber)</PackageVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' == ''">
|
|
|
|
<Version>$(VersionPrefix)</Version>
|
|
|
|
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
|
|
|
|
<FileVersion>$(VersionPrefix).0</FileVersion>
|
|
|
|
<PackageVersion>$(VersionPrefix)</PackageVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2023-05-25 19:29:31 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<AssemblyAttribute Include="System.CLSCompliantAttribute">
|
|
|
|
<_Parameter1>true</_Parameter1>
|
|
|
|
</AssemblyAttribute>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-11-29 19:06:47 +00:00
|
|
|
<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>
|
|
|
|
|
2022-11-27 20:43:21 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\VpSharp\VpSharp.csproj"/>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|