Samples.Animation.DESKTOPGL.NET6.csproj 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <EnableDefaultItems>false</EnableDefaultItems>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <OutputType>WinExe</OutputType>
  6. <RootNamespace>Samples.Animation</RootNamespace>
  7. <AssemblyName>Samples.Animation</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="AnimationSampleComponent.cs" />
  26. <Compile Include="SampleGame.cs" />
  27. <Compile Include="Program.cs" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Compile Include="Properties\AssemblyInfo.cs" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <PackageReference Include="nkast.Xna.Framework" Version="3.11.9002" />
  34. <PackageReference Include="nkast.Xna.Framework.Content" Version="3.11.9002" />
  35. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.11.9002" />
  36. <PackageReference Include="nkast.Xna.Framework.Audio" Version="3.11.9002" />
  37. <PackageReference Include="nkast.Xna.Framework.Media" Version="3.11.9002" />
  38. <PackageReference Include="MonoGame.Framework.DesktopGL.9000" Version="3.11.9002" />
  39. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="3.11.9002" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Content Include="Icon.ico" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <KniContentReference Include="..\AnimationContent\Content.mgcb">
  46. <Link>Content\Content.mgcb</Link>
  47. </KniContentReference>
  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. </Project>