Animation.WindowsDX.csproj 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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="3.13.9001" />
  28. <PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001" />
  29. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001" />
  30. <PackageReference Include="nkast.Xna.Framework.Audio" Version="3.13.9001" />
  31. <PackageReference Include="nkast.Xna.Framework.Media" Version="3.13.9001" />
  32. <PackageReference Include="nkast.Xna.Framework.Input" Version="3.13.9001" />
  33. <PackageReference Include="nkast.Xna.Framework.Game" Version="3.13.9001" />
  34. <PackageReference Include="MonoGame.Framework.WindowsDX.9000" Version="3.13.9001" />
  35. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="3.13.9001" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Compile Include="Program.cs" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Content Include="Icon.ico" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <KniContentReference Include="..\AnimationContent\AnimationContent.mgcb">
  45. <Link>Content\AnimationContent.mgcb</Link>
  46. </KniContentReference>
  47. <None Include="app.manifest" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <ProjectReference Include="..\..\..\Animation\Aether.Animation.NETSTANDARD.csproj" />
  51. <ProjectReference Include="..\..\..\Shaders\InfiniteGrid\Aether.Shaders.InfiniteGrid.NETSTANDARD.csproj" />
  52. </ItemGroup>
  53. <Import Project="..\Animation.Shared\Animation.Shared.projitems" Label="Shared" />
  54. </Project>