Samples.Tilemap.WINDOWS.NET6.csproj 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  7. <OutputType>WinExe</OutputType>
  8. <RootNamespace>Samples.Tilemap</RootNamespace>
  9. <AssemblyName>Samples.Tilemap</AssemblyName>
  10. <MonoGamePlatform>Windows</MonoGamePlatform>
  11. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  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. <OutputPath>bin\Debug\Windows\MG\</OutputPath>
  22. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  23. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  24. <UseVSHostingProcess>false</UseVSHostingProcess>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  27. <OutputPath>bin\Release\Windows\MG\</OutputPath>
  28. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  29. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <Compile Include="Game1.cs" />
  33. <Compile Include="Program.cs" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Compile Include="Properties\AssemblyInfo.cs" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Reference Include="MonoGame.Framework">
  40. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\Windows\net6.0-windows\MonoGame.Framework.dll</HintPath>
  41. </Reference>
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Content Include="Icon.ico" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <MonoGameContentReference Include="..\TilemapContent\Samples.TilemapContent.mgcb">
  48. <Link>Content\Content.mgcb</Link>
  49. </MonoGameContentReference>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <ProjectReference Include="..\..\Atlas\Aether.Atlas.NETSTANDARD.csproj" />
  53. <ProjectReference Include="..\..\Shaders\Tilemap\Aether.Shaders.Tilemap.NETSTANDARD.csproj" />
  54. <ProjectReference Include="..\..\Tilemap\Aether.Tilemap.NETSTANDARD.csproj" />
  55. </ItemGroup>
  56. <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\MonoGame.Content.Builder17.targets" />
  57. </Project>