12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <ProjectGuid>{746551BA-FB64-43B0-8479-0506B930D3E5}</ProjectGuid>
- <ProjectTypeGuids>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>nkast.Aether.Graphics</RootNamespace>
- <AssemblyName>Aether.Tilemap</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- <XnaFrameworkVersion>v4.0</XnaFrameworkVersion>
- <XnaPlatform>Windows</XnaPlatform>
- <XnaProfile>Reach</XnaProfile>
- <XnaCrossPlatformGroupID>7637B8A4-FB9C-43EC-8ABC-602C818F00B5</XnaCrossPlatformGroupID>
- <XnaOutputType>Library</XnaOutputType>
- <!--
- <XnaRefreshLevel>1</XnaRefreshLevel>
- -->
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\Artifacts\Debug\Libraries\net4.XNA\</OutputPath>
- <DefineConstants>TRACE;DEBUG;WINDOWS XNA</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <NoStdLib>true</NoStdLib>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <PlatformTarget>x86</PlatformTarget>
- <XnaCompressContent>false</XnaCompressContent>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
- <DebugType>none</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\Artifacts\Release\Libraries\net4.XNA\</OutputPath>
- <DefineConstants>WINDOWS XNA</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <NoStdLib>true</NoStdLib>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- <PlatformTarget>x86</PlatformTarget>
- <XnaCompressContent>true</XnaCompressContent>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="mscorlib" />
- <Reference Include="System" />
- <Reference Include="System.Core">
- <Private>False</Private>
- </Reference>
- <Reference Include="Microsoft.Xna.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
- <Reference Include="Microsoft.Xna.Framework.Graphics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Tilemap\Extensions.cs" />
- <Compile Include="Tilemap\Tile.cs" />
- <Compile Include="Tilemap\Tilemap.cs" />
- <Compile Include="ContentReaders\TilemapReader.cs" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Shaders\Tilemap\Aether.Shaders.Tilemap.NET4.XNA.csproj">
- <Project>{AB2B4C7E-0FCA-4CFE-8837-E3E3374249F6}</Project>
- <Name>Aether.Shaders.Tilemap.NET4.XNA</Name>
- <Private>False</Private>
- </ProjectReference>
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.targets" />
- </Project>
|