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-11-15 17:00:13 +01:00
|
|
|
|
<ApplicationIcon>FanControl.ico</ApplicationIcon>
|
2022-10-15 16:53:24 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2022-11-13 14:39:29 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\CommonHelpers\CommonHelpers.csproj" />
|
2022-11-20 15:12:12 +01:00
|
|
|
|
<ProjectReference Include="..\ExternalHelpers\ExternalHelpers.csproj" />
|
2022-11-13 14:39:29 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-10-15 16:53:24 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="inpoutx64.dll">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|