mirror of
https://github.com/henrygd/beszel.git
synced 2026-03-22 21:46:18 +01:00
fixes #1130 * add RuntimeIdentifier and AppendRuntimeIdentifierToOutputPath to beszel_lhm.csproj * add more default sensor filters for LHM --------- Co-authored-by: henrygd <hank@henrygd.me>
14 lines
432 B
XML
14 lines
432 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LibreHardwareMonitorLib" Version="0.9.5" />
|
|
</ItemGroup>
|
|
</Project>
|