Samples.Tilemaps.WINDOWS.csproj 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <ProjectGuid>{9B99798B-72F3-4E4B-9B99-DE15F7C955E9}</ProjectGuid>
  5. <OutputType>WinExe</OutputType>
  6. <AppDesignerFolder>Properties</AppDesignerFolder>
  7. <RootNamespace>Samples.Tilemaps</RootNamespace>
  8. <AssemblyName>Samples.Tilemaps</AssemblyName>
  9. <FileAlignment>512</FileAlignment>
  10. <KniPlatform>Windows</KniPlatform>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <TargetFrameworkProfile />
  13. </PropertyGroup>
  14. <PropertyGroup>
  15. <ApplicationIcon>Icon.ico</ApplicationIcon>
  16. </PropertyGroup>
  17. <PropertyGroup>
  18. <ApplicationManifest>app.manifest</ApplicationManifest>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  21. <DebugSymbols>true</DebugSymbols>
  22. <OutputPath>bin\Debug\Windows\KNI\</OutputPath>
  23. <DefineConstants>TRACE;DEBUG;WINDOWS KNI</DefineConstants>
  24. <DebugType>full</DebugType>
  25. <PlatformTarget>AnyCPU</PlatformTarget>
  26. <ErrorReport>prompt</ErrorReport>
  27. <Prefer32Bit>true</Prefer32Bit>
  28. <UseVSHostingProcess>false</UseVSHostingProcess>
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  31. <OutputPath>bin\Release\Windows\KNI\</OutputPath>
  32. <DefineConstants>TRACE;WINDOWS KNI</DefineConstants>
  33. <Optimize>true</Optimize>
  34. <DebugType>pdbonly</DebugType>
  35. <PlatformTarget>AnyCPU</PlatformTarget>
  36. <ErrorReport>prompt</ErrorReport>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Compile Include="TilemapSampleComponent.cs" />
  40. <Compile Include="TilemapGame.cs" />
  41. <Compile Include="Program.cs" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="Properties\AssemblyInfo.cs" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <PackageReference Include="nkast.Xna.Framework" Version="4.0.9001.*" />
  48. <PackageReference Include="nkast.Xna.Framework.Content" Version="4.0.9001.*" />
  49. <PackageReference Include="nkast.Xna.Framework.Devices" Version="4.0.9001.*" />
  50. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="4.0.9001.*" />
  51. <PackageReference Include="nkast.Xna.Framework.Audio" Version="4.0.9001.*" />
  52. <PackageReference Include="nkast.Xna.Framework.Media" Version="4.0.9001.*" />
  53. <PackageReference Include="nkast.Xna.Framework.Input" Version="4.0.9001.*" />
  54. <PackageReference Include="nkast.Xna.Framework.Game" Version="4.0.9001.*" />
  55. <PackageReference Include="nkast.Xna.Framework.Storage" Version="4.0.9001" />
  56. <PackageReference Include="nkast.Xna.Framework.XR" Version="4.0.9001" />
  57. <PackageReference Include="nkast.Kni.Platform.WinForms.DX11" Version="4.0.9001.*" />
  58. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="4.0.9001.*" />
  59. <Reference Include="System" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Content Include="Icon.ico" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <KniContentReference Include="..\TilemapContent\TilemapContent.mgcb">
  66. <Link>Content\Content.mgcb</Link>
  67. </KniContentReference>
  68. <None Include="app.config" />
  69. <None Include="app.manifest" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <ProjectReference Include="..\..\..\Atlas\Aether.Atlas.csproj">
  73. <Project>{c7522b5e-b255-4fb6-a17a-9e6d217aebd2}</Project>
  74. <Name>Aether.Atlas</Name>
  75. </ProjectReference>
  76. <ProjectReference Include="..\..\..\Shaders\Tilemap\Aether.Shaders.Tilemap.csproj">
  77. <Project>{6721cd07-0880-4154-85af-ebe6043ef178}</Project>
  78. <Name>Aether.Shaders.Tilemap</Name>
  79. </ProjectReference>
  80. <ProjectReference Include="..\..\..\Tilemap\Aether.Tilemap.csproj">
  81. <Project>{7bd9f460-f3f9-40a0-b298-066ea975c06c}</Project>
  82. <Name>Aether.Tilemap</Name>
  83. </ProjectReference>
  84. </ItemGroup>
  85. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  86. </Project>