2022-11-12 12:22:19 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-10-15 16:53:24 +02:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-11-11 19:56:08 +01:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
2022-10-15 16:53:24 +02:00
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<UseWindowsForms>True</UseWindowsForms>
|
|
|
|
|
|
<StartupObject>FanControl.Program</StartupObject>
|
2022-11-12 10:14:09 +01:00
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
2022-11-12 13:56:15 +01:00
|
|
|
|
<Version>0.1.0</Version>
|
2022-10-15 16:53:24 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="LibreHardwareMonitorLib" Version="0.9.1" />
|
2022-11-12 12:22:19 +01:00
|
|
|
|
<PackageReference Include="TaskScheduler" Version="2.10.1" />
|
2022-10-15 16:53:24 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-11-13 14:39:29 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\CommonHelpers\CommonHelpers.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-11-12 10:14:09 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Update="Properties\Settings.Designer.cs">
|
|
|
|
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-10-15 16:53:24 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="inpoutx64.dll">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2022-11-12 10:14:09 +01:00
|
|
|
|
<None Update="Properties\Settings.settings">
|
|
|
|
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
|
|
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
|
|
|
|
</None>
|
2022-10-15 16:53:24 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|