mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-10 02:55:41 +00:00
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
<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>
|