2024-04-16 20:33:16 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-04-16 20:15:07 +01:00
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<AssemblyName>fdup</AssemblyName>
|
2024-04-16 21:06:12 +01:00
|
|
|
<VersionPrefix>1.1.0</VersionPrefix>
|
2024-04-16 20:17:00 +01:00
|
|
|
<Authors>Oliver Booth</Authors>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
|
|
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' == ''">
|
|
|
|
<Version>$(VersionPrefix)-$(VersionSuffix)</Version>
|
|
|
|
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
|
|
|
|
<FileVersion>$(VersionPrefix).0</FileVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' != ''">
|
|
|
|
<Version>$(VersionPrefix)-$(VersionSuffix).$(BuildNumber)</Version>
|
|
|
|
<AssemblyVersion>$(VersionPrefix).$(BuildNumber)</AssemblyVersion>
|
|
|
|
<FileVersion>$(VersionPrefix).$(BuildNumber)</FileVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' == ''">
|
|
|
|
<Version>$(VersionPrefix)</Version>
|
|
|
|
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
|
|
|
|
<FileVersion>$(VersionPrefix).0</FileVersion>
|
2024-04-16 20:15:07 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Spectre.Console.Cli" Version="0.48.0"/>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|