Samples.Deferred.WINDOWS.NET6.csproj 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.Deferred</RootNamespace>
  9. <AssemblyName>Samples.Deferred</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="DeferredRendering.cs" />
  29. <Compile Include="DeferredSampleComponent.cs" />
  30. <Compile Include="SampleGame.cs" />
  31. <Compile Include="Program.cs" />
  32. <Compile Include="QuadRenderer.cs" />
  33. <Compile Include="Spaceship.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="..\DeferredContent\Samples.DeferredContent.mgcb">
  48. <Link>Content\Content.mgcb</Link>
  49. </MonoGameContentReference>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <ProjectReference Include="..\..\Shaders\Deferred\Aether.Shaders.Deferred.NETSTANDARD.csproj" />
  53. </ItemGroup>
  54. <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\MonoGame.Content.Builder17.targets" />
  55. </Project>