StateObject.Windows.csproj 1.0 KB

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <RootNamespace>StateObject.Windows</RootNamespace>
  6. <AssemblyName>StateObjectWindows</AssemblyName>
  7. <Description>Windows platform for StateObject sample</Description>
  8. <Company>Microsoft</Company>
  9. <Product>StateObjectWindows</Product>
  10. <Copyright>Copyright © Microsoft 2010</Copyright>
  11. <Version>1.0.0.0</Version>
  12. <UseWindowsForms>true</UseWindowsForms>
  13. <MonoGamePlatform>Windows</MonoGamePlatform>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\..\Core\StateObject.Core.csproj" />
  17. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  18. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb">
  22. <Link>Content\Content.mgcb</Link>
  23. </MonoGameContentReference>
  24. </ItemGroup>
  25. </Project>