17 lines
610 B
XML
17 lines
610 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<StartupObject>App.Program</StartupObject>
|
|
<UseWindowsForms>True</UseWindowsForms>
|
|
<Title>Colorclock Screensaver</Title>
|
|
<Description>Cool screensaver, it's perfect and has not settings :)</Description>
|
|
<Copyright>Copyright © 2014-2023</Copyright>
|
|
<Product>ColorClock ScreenSaver</Product>
|
|
<Company>Henrik Hautakoski</Company>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|