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>
|
|
|
|
<VersionPrefix>0.1.0</VersionPrefix>
|
|
|
|
</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>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\VpSharp\VpSharp.csproj"/>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|