steam-deck-tools/FanControl/FanControl.csproj

27 lines
818 B
XML
Raw Normal View History

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