Samples.Atlas.DESKTOPGL.NET8.csproj 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <EnableDefaultItems>false</EnableDefaultItems>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <OutputType>WinExe</OutputType>
  6. <RootNamespace>Samples.Atlas</RootNamespace>
  7. <AssemblyName>Samples.Atlas</AssemblyName>
  8. <KniPlatform>Windows</KniPlatform>
  9. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  10. <OutputPath>bin\$(Configuration)\DesktopGL\</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="AtlasSampleComponent.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.13.9001" />
  34. <PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001" />
  35. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001" />
  36. <PackageReference Include="nkast.Xna.Framework.Audio" Version="3.13.9001" />
  37. <PackageReference Include="nkast.Xna.Framework.Media" Version="3.13.9001" />
  38. <PackageReference Include="nkast.Xna.Framework.Input" Version="3.13.9001" />
  39. <PackageReference Include="nkast.Xna.Framework.Game" Version="3.13.9001" />
  40. <PackageReference Include="MonoGame.Framework.DesktopGL.9000" Version="3.13.9001" />
  41. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="3.13.9001" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Content Include="Icon.ico" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <KniContentReference Include="..\AtlasContent\Samples.AtlasContent.mgcb">
  48. <Link>Content\Content.mgcb</Link>
  49. </KniContentReference>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <ProjectReference Include="..\..\Atlas\Aether.Atlas.NETSTANDARD.csproj" />
  53. </ItemGroup>
  54. </Project>