Files
chromebox-fan-control-win/ChromeboxFanControl/ChromeboxFanControl.csproj
2026-03-21 05:47:58 +08:00

28 lines
863 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationManifest>app.manifest</ApplicationManifest>
<RootNamespace>ChromeboxFanControl</RootNamespace>
<AssemblyName>ChromeboxFanControl</AssemblyName>
<ApplicationIcon />
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LibreHardwareMonitorLib" Version="0.9.6" />
<PackageReference Include="ScottPlot.WinForms" Version="5.0.55" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>