Samples.Tilemaps.WINDOWS.NET6.csproj 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props')" />
  3. <PropertyGroup>
  4. <EnableDefaultItems>false</EnableDefaultItems>
  5. <TargetFramework>net6.0-windows</TargetFramework>
  6. <OutputType>WinExe</OutputType>
  7. <RootNamespace>Samples.Tilemaps</RootNamespace>
  8. <AssemblyName>Samples.Tilemaps</AssemblyName>
  9. <MonoGamePlatform>Windows</MonoGamePlatform>
  10. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  11. <OutputPath>bin\$(Configuration)\DesktopGL\net6\</OutputPath>
  12. </PropertyGroup>
  13. <PropertyGroup>
  14. <ApplicationIcon>Icon.ico</ApplicationIcon>
  15. </PropertyGroup>
  16. <PropertyGroup>
  17. <ApplicationManifest>app.manifest</ApplicationManifest>
  18. <UseWindowsForms>True</UseWindowsForms>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  21. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  24. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <Compile Include="TilemapSampleComponent.cs" />
  28. <Compile Include="SampleGame.cs" />
  29. <Compile Include="Program.cs" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Compile Include="Properties\AssemblyInfo.cs" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <Reference Include="Xna.Framework">
  36. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\Framework\netstandard2.0\Xna.Framework.dll</HintPath>
  37. </Reference>
  38. <Reference Include="MonoGame.Framework">
  39. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\Windows\net6.0-windows\MonoGame.Framework.dll</HintPath>
  40. </Reference>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Content Include="Icon.ico" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <MonoGameContentReference Include="..\TilemapContent\Samples.TilemapContent.mgcb">
  47. <Link>Content\Content.mgcb</Link>
  48. </MonoGameContentReference>
  49. </ItemGroup>
  50. <ItemGroup>
  51. <ProjectReference Include="..\..\Atlas\Aether.Atlas.NETSTANDARD.csproj" />
  52. <ProjectReference Include="..\..\Shaders\Tilemap\Aether.Shaders.Tilemap.NETSTANDARD.csproj" />
  53. <ProjectReference Include="..\..\Tilemap\Aether.Tilemap.NETSTANDARD.csproj" />
  54. </ItemGroup>
  55. <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\MonoGame.Content.Builder17.targets" />
  56. </Project>