| 1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-windows</TargetFramework>
- <UseWindowsForms>false</UseWindowsForms>
- <RootNamespace>GameComponents.Windows</RootNamespace>
- <AssemblyName>GameComponents.Windows</AssemblyName>
- <OutputType>WinExe</OutputType>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\GameComponents.Core.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\logo.xnb" Link="Content\logo.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Fonts\Arial.xnb" Link="Content\Font.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|