Bunch of screensavers in Windows
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
-
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net5.0-windows</TargetFramework>
- <UseWindowsForms>true</UseWindowsForms>
- <StartupObject>GameOfLife.Program</StartupObject>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="unvell.D2DLib-x64" Version="1.3.1" />
- </ItemGroup>
-
- </Project>
|