Aether.Tilemap.csproj 1.7 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <ProjectGuid>{7BD9F460-F3F9-40A0-B298-066EA975C06C}</ProjectGuid>
  4. <EnableDefaultItems>false</EnableDefaultItems>
  5. <TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
  6. <OutputType>Library</OutputType>
  7. <RootNamespace>nkast.Aether.Graphics</RootNamespace>
  8. <AssemblyName>Aether.Tilemap</AssemblyName>
  9. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  10. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. <OutputPath>..\Artifacts\$(Configuration)\Libraries\$(TargetFramework)\</OutputPath>
  12. <BaseIntermediateOutputPath>obj\$(TargetFramework)\</BaseIntermediateOutputPath>
  13. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  19. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <PackageReference Include="nkast.Xna.Framework" Version="4.0.9001" />
  23. <PackageReference Include="nkast.Xna.Framework.Content" Version="4.0.9001" />
  24. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="4.0.9001" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <Compile Include="Tilemap\Extensions.cs" />
  28. <Compile Include="Tilemap\Tile.cs" />
  29. <Compile Include="Tilemap\Tilemap.cs" />
  30. <Compile Include="ContentReaders\TilemapReader.cs" />
  31. <Compile Include="Properties\AssemblyInfo.cs" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <ProjectReference Include="..\Shaders\Tilemap\Aether.Shaders.Tilemap.csproj" />
  35. </ItemGroup>
  36. </Project>