-
Notifications
You must be signed in to change notification settings - Fork 2
/
appcompare.csproj
36 lines (31 loc) · 1.36 KB
/
appcompare.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NoWarn>1591</NoWarn>
<PackAsTool>true</PackAsTool>
<VersionPrefix>2.3.0</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
<Copyright>Sebastien Pouliot</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<Authors>Sebastien Pouliot</Authors>
<PackageTags>tool;comparer;appbundle</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/spouliot/appcompare/blob/master/ChangeLog.md</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/spouliot/appcompare</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)/README.md" Pack="true" PackagePath="/" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CliWrap" Version="3.5.0" />
<PackageReference Include="Spectre.Console" Version="0.45.0" />
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.4.0-alpha.22272.1" />
<PackageReference Include="Terminal.Gui" Version="1.8.2" />
</ItemGroup>
</Project>