Aether.Tilemap.NETSTANDARD.csproj 1.8 KB

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