mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2025-12-31 21:59:58 +01:00
27 lines
818 B
XML
27 lines
818 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>True</UseWindowsForms>
|
|
<StartupObject>FanControl.Program</StartupObject>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<Version>0.1.0</Version>
|
|
<ApplicationIcon>FanControl.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CommonHelpers\CommonHelpers.csproj" />
|
|
<ProjectReference Include="..\ExternalHelpers\ExternalHelpers.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="inpoutx64.dll">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|