autogen/cli/cli.csproj

16 lines
402 B
XML
Raw Normal View History

2023-06-01 10:58:29 -07:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2023-06-02 16:33:22 +02:00
<TargetFramework>net8.0</TargetFramework>
2023-06-01 10:58:29 -07:00
<ImplicitUsings>enable</ImplicitUsings>
2023-06-02 16:33:22 +02:00
<PublishAot>true</PublishAot>
2023-06-01 10:58:29 -07:00
<Nullable>enable</Nullable>
</PropertyGroup>
2023-06-02 16:33:22 +02:00
<ItemGroup>
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
2023-06-01 10:58:29 -07:00
</ItemGroup>
</Project>