Files
Thing/ThingHK/ThingHK.csproj
T
2026-08-31 18:05:27 +08:00

33 lines
1.0 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>ThingHK</RootNamespace>
<AssemblyName>ThingHK</AssemblyName>
<!-- Native AOT 配置 -->
<PublishAot>true</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
<!-- 反射兜底:LHB 内部大量使用反射,保留必要元数据 -->
<TrimmerRootDescriptor>rd.xml</TrimmerRootDescriptor>
<!-- 关闭 CA1416 警告(项目明确仅面向 Windows -->
<NoWarn>$(NoWarn);CA1416</NoWarn>
<!-- 产物信息 -->
<Version>0.2.0</Version>
<Company>Thing</Company>
<Product>ThingHardwareKernel</Product>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LibreHardwareMonitorLib" Version="0.9.7-pre729" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
</ItemGroup>
</Project>