Samples.Deferred.DESKTOPGL.NET6.csproj 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <EnableDefaultItems>false</EnableDefaultItems>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <OutputType>WinExe</OutputType>
  6. <RootNamespace>Samples.Deferred</RootNamespace>
  7. <AssemblyName>Samples.Deferred</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="DeferredRendering.cs" />
  26. <Compile Include="DeferredSampleComponent.cs" />
  27. <Compile Include="SampleGame.cs" />
  28. <Compile Include="Program.cs" />
  29. <Compile Include="QuadRenderer.cs" />
  30. <Compile Include="Spaceship.cs" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <Compile Include="Properties\AssemblyInfo.cs" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <PackageReference Include="nkast.Xna.Framework" Version="3.10.9001" />
  37. <PackageReference Include="MonoGame.Framework.DesktopGL.9000" Version="3.10.9001" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <Content Include="Icon.ico" />
  41. </ItemGroup>
  42. <ItemGroup>
  43. <KniContentReference Include="..\DeferredContent\Samples.DeferredContent.mgcb">
  44. <Link>Content\Content.mgcb</Link>
  45. </KniContentReference>
  46. </ItemGroup>
  47. <ItemGroup>
  48. <ProjectReference Include="..\..\Shaders\Deferred\Aether.Shaders.Deferred.NETSTANDARD.csproj" />
  49. </ItemGroup>
  50. <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\Kni.Content.Builder.targets" />
  51. </Project>