steam-deck-tools/FanControl/FanControl.csproj

43 lines
1.3 KiB
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>
<Content Include="FanControl.ico" />
2022-10-15 16:53:24 +02:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CommonHelpers\CommonHelpers.csproj" />
<ProjectReference Include="..\ExternalHelpers\ExternalHelpers.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>