Samples.FXAA.DESKTOPGL.NET6.csproj 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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</TargetFramework>
  6. <OutputType>WinExe</OutputType>
  7. <RootNamespace>Samples.FXAA</RootNamespace>
  8. <AssemblyName>Samples.FXAA</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. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  20. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  23. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  24. </PropertyGroup>
  25. <ItemGroup>
  26. <Compile Include="AntiAliasing.cs" />
  27. <Compile Include="FXAASampleComponent.cs" />
  28. <Compile Include="SampleGame.cs" />
  29. <Compile Include="Program.cs" />
  30. <Compile Include="Spaceship.cs" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <Compile Include="Properties\AssemblyInfo.cs" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Reference Include="Xna.Framework">
  37. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\Framework\netstandard2.0\Xna.Framework.dll</HintPath>
  38. </Reference>
  39. <Reference Include="MonoGame.Framework">
  40. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\netstandard2.0\MonoGame.Framework.dll</HintPath>
  41. </Reference>
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Content Include="Icon.ico" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <MonoGameContentReference Include="..\FXAAContent\Samples.FXAAContent.mgcb">
  48. <Link>Content\Content.mgcb</Link>
  49. </MonoGameContentReference>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\netstandard2.0\x64\SDL2.dll">
  53. <Link>x64\SDL2.dll</Link>
  54. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  55. </None>
  56. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\netstandard2.0\x64\soft_oal.dll">
  57. <Link>x64\soft_oal.dll</Link>
  58. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  59. </None>
  60. </ItemGroup>
  61. <ItemGroup>
  62. <ProjectReference Include="..\..\Shaders\FXAA\Aether.Shaders.FXAA.NETSTANDARD.csproj" />
  63. </ItemGroup>
  64. <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\MonoGame.Content.Builder17.targets" />
  65. </Project>