Samples.FXAA.DESKTOPGL.NET6.csproj 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <EnableDefaultItems>false</EnableDefaultItems>
  4. <TargetFramework>net6.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\net6\</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="SampleGame.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.10.9001" />
  36. <PackageReference Include="MonoGame.Framework.DesktopGL.9000" Version="3.10.9001" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Content Include="Icon.ico" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <KniContentReference Include="..\FXAAContent\Samples.FXAAContent.mgcb">
  43. <Link>Content\Content.mgcb</Link>
  44. </KniContentReference>
  45. </ItemGroup>
  46. <ItemGroup>
  47. <ProjectReference Include="..\..\Shaders\FXAA\Aether.Shaders.FXAA.NETSTANDARD.csproj" />
  48. </ItemGroup>
  49. <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\Kni.Content.Builder.targets" />
  50. </Project>