| 1234567891011121314151617181920 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <RootNamespace>SpriteEffects.Windows</RootNamespace>
- <UseWindowsForms>true</UseWindowsForms>
- <Nullable>enable</Nullable>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <MonoGamePlatform>Windows</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\SpriteEffects.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb" />
- </ItemGroup>
- </Project>
|