23 lines
741 B
XML
23 lines
741 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PublishAot>true</PublishAot>
|
|
<IlcOptimizationPreference>Speed</IlcOptimizationPreference>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Spectre.Console" Version="0.49.1" />
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Hush.Config\Hush.Config.csproj" />
|
|
<ProjectReference Include="..\Hush.Daemon\Hush.Daemon.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|