Samples.FXAA.WINDOWS.csproj 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props')" />
  4. <PropertyGroup>
  5. <ProjectGuid>{4F224B03-7499-4EE0-A072-7CD7FC266E2A}</ProjectGuid>
  6. <OutputType>WinExe</OutputType>
  7. <AppDesignerFolder>Properties</AppDesignerFolder>
  8. <RootNamespace>Samples.FXAA</RootNamespace>
  9. <AssemblyName>Samples.FXAA</AssemblyName>
  10. <FileAlignment>512</FileAlignment>
  11. <MonoGamePlatform>Windows</MonoGamePlatform>
  12. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  13. <TargetFrameworkProfile />
  14. </PropertyGroup>
  15. <PropertyGroup>
  16. <ApplicationIcon>Icon.ico</ApplicationIcon>
  17. </PropertyGroup>
  18. <PropertyGroup>
  19. <ApplicationManifest>app.manifest</ApplicationManifest>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  22. <DebugSymbols>true</DebugSymbols>
  23. <OutputPath>bin\Debug\Windows\MG\</OutputPath>
  24. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  25. <DebugType>full</DebugType>
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <ErrorReport>prompt</ErrorReport>
  28. <Prefer32Bit>true</Prefer32Bit>
  29. <UseVSHostingProcess>false</UseVSHostingProcess>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  32. <OutputPath>bin\Release\Windows\MG\</OutputPath>
  33. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  34. <Optimize>true</Optimize>
  35. <DebugType>pdbonly</DebugType>
  36. <PlatformTarget>AnyCPU</PlatformTarget>
  37. <ErrorReport>prompt</ErrorReport>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Compile Include="AntiAliasing.cs" />
  41. <Compile Include="FXAASampleComponent.cs" />
  42. <Compile Include="SampleGame.cs" />
  43. <Compile Include="Program.cs" />
  44. <Compile Include="Spaceship.cs" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="Properties\AssemblyInfo.cs" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Reference Include="MonoGame.Framework">
  51. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\Windows\MonoGame.Framework.dll</HintPath>
  52. </Reference>
  53. <Reference Include="System" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Content Include="Icon.ico" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <MonoGameContentReference Include="..\FXAAContent\Samples.FXAAContent.mgcb">
  60. <Link>Content\Content.mgcb</Link>
  61. </MonoGameContentReference>
  62. <None Include="app.config" />
  63. <None Include="app.manifest" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <ProjectReference Include="..\..\Shaders\FXAA\Aether.Shaders.FXAA.NET4.csproj">
  67. <Project>{fbbde2ba-f9f3-4041-8584-2c912c235e26}</Project>
  68. <Name>Aether.Shaders.FXAA.NET4</Name>
  69. </ProjectReference>
  70. </ItemGroup>
  71. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  72. <Import Project="$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Content.Builder.targets" />
  73. </Project>