12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <ProjectGuid>{7BD9F460-F3F9-40A0-B298-066EA975C06C}</ProjectGuid>
- <ProjectTypeGuids>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>nkast.Aether.Graphics</RootNamespace>
- <AssemblyName>Aether.Tilemap</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>..\Artifacts\Debug\Libraries\net4\</OutputPath>
- <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <Prefer32Bit>false</Prefer32Bit>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>none</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>..\Artifacts\Release\Libraries\net4\</OutputPath>
- <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- <Prefer32Bit>false</Prefer32Bit>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="nkast.Xna.Framework" Version="3.13.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- <PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- <Reference Include="System" />
- <Reference Include="System.Core" />
- <Reference Include="mscorlib" />
- </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.csproj">
- <Project>{6721cd07-0880-4154-85af-ebe6043ef178}</Project>
- <Name>Aether.Shaders.Tilemap.NET4</Name>
- <Private>False</Private>
- </ProjectReference>
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- </Project>
|