Bunch of screensavers in Windows
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

18 líneas
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>