Aether.Tilemap.NET4.csproj 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <ProjectGuid>{7BD9F460-F3F9-40A0-B298-066EA975C06C}</ProjectGuid>
  5. <ProjectTypeGuids>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>nkast.Aether.Graphics</RootNamespace>
  11. <AssemblyName>Aether.Tilemap</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>..\Artifacts\Debug\net4\</OutputPath>
  19. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <Prefer32Bit>false</Prefer32Bit>
  23. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>none</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>..\Artifacts\Release\net4\</OutputPath>
  29. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <Prefer32Bit>false</Prefer32Bit>
  33. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <PackageReference Include="MonoGame.Framework.Portable.9000" Version="3.8.9101">
  37. <PrivateAssets>all</PrivateAssets>
  38. <ExcludeAssets>runtime</ExcludeAssets>
  39. </PackageReference>
  40. <Reference Include="System" />
  41. <Reference Include="System.Core" />
  42. <Reference Include="mscorlib" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <Compile Include="Tilemap\Extensions.cs" />
  46. <Compile Include="Tilemap\Tile.cs" />
  47. <Compile Include="Tilemap\Tilemap.cs" />
  48. <Compile Include="ContentReaders\TilemapReader.cs" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="Properties\AssemblyInfo.cs" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <ProjectReference Include="..\Shaders\Tilemap\Aether.Shaders.Tilemap.NET4.csproj">
  55. <Project>{6721cd07-0880-4154-85af-ebe6043ef178}</Project>
  56. <Name>Aether.Shaders.Tilemap.NET4</Name>
  57. <Private>False</Private>
  58. </ProjectReference>
  59. </ItemGroup>
  60. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  61. </Project>