mirror of
https://github.com/whoeevee/ivinject.git
synced 2026-01-08 23:25:03 +00:00
27 lines
963 B
XML
27 lines
963 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<PublishAot>true</PublishAot>
|
|
|
|
<Optimize>true</Optimize>
|
|
<OptimizationPreference>Speed</OptimizationPreference>
|
|
<IlcFoldIdenticalMethodBodies>true</IlcFoldIdenticalMethodBodies>
|
|
|
|
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
|
|
<StripSymbols>true</StripSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-rc.1.25451.107" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0-rc.1.25451.107" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.0-rc.1.25451.107" />
|
|
<PackageReference Include="plist-cil" Version="2.3.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|