Samples.Animation.WINDOWS.NET6.csproj 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.Animation</RootNamespace>
  9. <AssemblyName>Samples.Animation</AssemblyName>
  10. <MonoGamePlatform>Windows</MonoGamePlatform>
  11. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  12. <OutputPath>bin\$(Configuration)\DesktopGL\net6\</OutputPath>
  13. </PropertyGroup>
  14. <PropertyGroup>
  15. <ApplicationIcon>Icon.ico</ApplicationIcon>
  16. </PropertyGroup>
  17. <PropertyGroup>
  18. <ApplicationManifest>app.manifest</ApplicationManifest>
  19. <UseWindowsForms>True</UseWindowsForms>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  22. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  23. </PropertyGroup>
  24. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  25. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  26. </PropertyGroup>
  27. <ItemGroup>
  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="MonoGame.Framework">
  36. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\Windows\net6.0-windows\MonoGame.Framework.dll</HintPath>
  37. </Reference>
  38. </ItemGroup>
  39. <ItemGroup>
  40. <Content Include="Icon.ico" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <MonoGameContentReference Include="..\AnimationContent\Content.mgcb">
  44. <Link>Content\Content.mgcb</Link>
  45. </MonoGameContentReference>
  46. </ItemGroup>
  47. <ItemGroup>
  48. <ProjectReference Include="..\..\Animation\Aether.Animation.NETSTANDARD.DX.csproj" />
  49. <ProjectReference Include="..\..\Shaders\InfiniteGrid\Aether.Shaders.InfiniteGrid.NETSTANDARD.csproj" />
  50. </ItemGroup>
  51. <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\MonoGame.Content.Builder17.targets" />
  52. </Project>