12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <ProjectGuid>{9B99798B-72F3-4E4B-9B99-DE15F7C955E9}</ProjectGuid>
- <OutputType>WinExe</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Samples.Tilemaps</RootNamespace>
- <AssemblyName>Samples.Tilemaps</AssemblyName>
- <FileAlignment>512</FileAlignment>
- <KniPlatform>Windows</KniPlatform>
- <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
- <TargetFrameworkProfile />
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationIcon>Icon.ico</ApplicationIcon>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
- <DebugSymbols>true</DebugSymbols>
- <OutputPath>bin\Debug\Windows\KNI\</OutputPath>
- <DefineConstants>TRACE;DEBUG;WINDOWS KNI</DefineConstants>
- <DebugType>full</DebugType>
- <PlatformTarget>AnyCPU</PlatformTarget>
- <ErrorReport>prompt</ErrorReport>
- <Prefer32Bit>true</Prefer32Bit>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
- <OutputPath>bin\Release\Windows\KNI\</OutputPath>
- <DefineConstants>TRACE;WINDOWS KNI</DefineConstants>
- <Optimize>true</Optimize>
- <DebugType>pdbonly</DebugType>
- <PlatformTarget>AnyCPU</PlatformTarget>
- <ErrorReport>prompt</ErrorReport>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="TilemapSampleComponent.cs" />
- <Compile Include="TilemapGame.cs" />
- <Compile Include="Program.cs" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="nkast.Xna.Framework" Version="4.0.9001.*" />
- <PackageReference Include="nkast.Xna.Framework.Content" Version="4.0.9001.*" />
- <PackageReference Include="nkast.Xna.Framework.Devices" Version="4.0.9001.*" />
- <PackageReference Include="nkast.Xna.Framework.Graphics" Version="4.0.9001.*" />
- <PackageReference Include="nkast.Xna.Framework.Audio" Version="4.0.9001.*" />
- <PackageReference Include="nkast.Xna.Framework.Media" Version="4.0.9001.*" />
- <PackageReference Include="nkast.Xna.Framework.Input" Version="4.0.9001.*" />
- <PackageReference Include="nkast.Xna.Framework.Game" Version="4.0.9001.*" />
- <PackageReference Include="nkast.Xna.Framework.Storage" Version="4.0.9001" />
- <PackageReference Include="nkast.Xna.Framework.XR" Version="4.0.9001" />
- <PackageReference Include="nkast.Kni.Platform.WinForms.DX11" Version="4.0.9001.*" />
- <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="4.0.9001.*" />
- <Reference Include="System" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Icon.ico" />
- </ItemGroup>
- <ItemGroup>
- <KniContentReference Include="..\TilemapContent\TilemapContent.mgcb">
- <Link>Content\Content.mgcb</Link>
- </KniContentReference>
- <None Include="app.config" />
- <None Include="app.manifest" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\Atlas\Aether.Atlas.csproj">
- <Project>{c7522b5e-b255-4fb6-a17a-9e6d217aebd2}</Project>
- <Name>Aether.Atlas</Name>
- </ProjectReference>
- <ProjectReference Include="..\..\..\Shaders\Tilemap\Aether.Shaders.Tilemap.csproj">
- <Project>{6721cd07-0880-4154-85af-ebe6043ef178}</Project>
- <Name>Aether.Shaders.Tilemap</Name>
- </ProjectReference>
- <ProjectReference Include="..\..\..\Tilemap\Aether.Tilemap.csproj">
- <Project>{7bd9f460-f3f9-40a0-b298-066ea975c06c}</Project>
- <Name>Aether.Tilemap</Name>
- </ProjectReference>
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- </Project>
|