Animation.DesktopGL.csproj 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <EnableDefaultItems>false</EnableDefaultItems>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <RollForward>Major</RollForward>
  6. <ProjectGuid>0eb5b5eb-23f9-4a21-b695-c01566558376</ProjectGuid>
  7. <OutputType>WinExe</OutputType>
  8. <PublishTrimmed>True</PublishTrimmed>
  9. <PublishAot>True</PublishAot>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Animation</RootNamespace>
  12. <AssemblyName>Animation</AssemblyName>
  13. <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
  14. <DefineConstants>$(DefineConstants);DESKTOPGL</DefineConstants>
  15. <KniPlatform>DesktopGL</KniPlatform>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  20. </PropertyGroup>
  21. <PropertyGroup>
  22. <ApplicationIcon>Icon.ico</ApplicationIcon>
  23. </PropertyGroup>
  24. <PropertyGroup>
  25. <ApplicationManifest>app.manifest</ApplicationManifest>
  26. </PropertyGroup>
  27. <ItemGroup>
  28. <PackageReference Include="nkast.Xna.Framework" Version="4.2.9001.*" />
  29. <PackageReference Include="nkast.Xna.Framework.Content" Version="4.2.9001.*" />
  30. <PackageReference Include="nkast.Xna.Framework.Devices" Version="4.2.9001.*" />
  31. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="4.2.9001.*" />
  32. <PackageReference Include="nkast.Xna.Framework.Audio" Version="4.2.9001.*" />
  33. <PackageReference Include="nkast.Xna.Framework.Media" Version="4.2.9001.*" />
  34. <PackageReference Include="nkast.Xna.Framework.Input" Version="4.2.9001.*" />
  35. <PackageReference Include="nkast.Xna.Framework.Game" Version="4.2.9001.*" />
  36. <PackageReference Include="nkast.Xna.Framework.Storage" Version="4.2.9001" />
  37. <PackageReference Include="nkast.Xna.Framework.XR" Version="4.2.9001" />
  38. <PackageReference Include="nkast.Kni.Platform.SDL2.GL" Version="4.2.9001.*" />
  39. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="4.2.9001.*" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Compile Include="Program.cs" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <EmbeddedResource Include="Icon.ico" />
  46. <EmbeddedResource Include="Icon.bmp" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <KniContentReference Include="..\AnimationContent\AnimationContent.mgcb">
  50. <Link>Content\AnimationContent.mgcb</Link>
  51. </KniContentReference>
  52. <None Include="app.manifest" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <ProjectReference Include="..\..\..\Animation\Aether.Animation.csproj" />
  56. <ProjectReference Include="..\..\..\Shaders\InfiniteGrid\Aether.Shaders.InfiniteGrid.csproj" />
  57. </ItemGroup>
  58. <Import Project="..\Animation.Shared\Animation.Shared.projitems" Label="Shared" />
  59. </Project>