Aether.Tilemap.NET4.csproj 2.8 KB

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