Samples.Deferred.WINDOWS.NET6.csproj 2.2 KB

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