Bunch of screensavers in Windows
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
545 B

  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net5.0-windows</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <StartupObject>GameOfLife.Program</StartupObject>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  9. <PlatformTarget>x64</PlatformTarget>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="unvell.D2DLib-x64" Version="1.3.1" />
  13. </ItemGroup>
  14. </Project>