Samples.FXAA.DESKTOPGL.NET8.csproj 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <EnableDefaultItems>false</EnableDefaultItems>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <OutputType>WinExe</OutputType>
  6. <RootNamespace>Samples.FXAA</RootNamespace>
  7. <AssemblyName>Samples.FXAA</AssemblyName>
  8. <KniPlatform>Windows</KniPlatform>
  9. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  10. <OutputPath>bin\$(Configuration)\DesktopGL\</OutputPath>
  11. </PropertyGroup>
  12. <PropertyGroup>
  13. <ApplicationIcon>Icon.ico</ApplicationIcon>
  14. </PropertyGroup>
  15. <PropertyGroup>
  16. <ApplicationManifest>app.manifest</ApplicationManifest>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  19. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  22. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  23. </PropertyGroup>
  24. <ItemGroup>
  25. <Compile Include="AntiAliasing.cs" />
  26. <Compile Include="FXAASampleComponent.cs" />
  27. <Compile Include="FXAAGame.cs" />
  28. <Compile Include="Program.cs" />
  29. <Compile Include="Spaceship.cs" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Compile Include="Properties\AssemblyInfo.cs" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <PackageReference Include="nkast.Xna.Framework" Version="3.14.9001" />
  36. <PackageReference Include="nkast.Xna.Framework.Content" Version="3.14.9001" />
  37. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.14.9001" />
  38. <PackageReference Include="nkast.Xna.Framework.Audio" Version="3.14.9001" />
  39. <PackageReference Include="nkast.Xna.Framework.Media" Version="3.14.9001" />
  40. <PackageReference Include="nkast.Xna.Framework.Input" Version="3.14.9001" />
  41. <PackageReference Include="nkast.Xna.Framework.Game" Version="3.14.9001" />
  42. <PackageReference Include="MonoGame.Framework.DesktopGL.9000" Version="3.14.9001" />
  43. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="3.14.9001" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Content Include="Icon.ico" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <KniContentReference Include="..\FXAAContent\FXAAContent.mgcb">
  50. <Link>Content\Content.mgcb</Link>
  51. </KniContentReference>
  52. </ItemGroup>
  53. <ItemGroup>
  54. <ProjectReference Include="..\..\..\Shaders\FXAA\Aether.Shaders.FXAA.NETSTANDARD.csproj" />
  55. </ItemGroup>
  56. </Project>