Animation.WindowsDX.csproj 2.7 KB

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