Aether.Tilemap.NETSTANDARD.csproj 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.13.9001">
  22. <PrivateAssets>all</PrivateAssets>
  23. <ExcludeAssets>runtime</ExcludeAssets>
  24. </PackageReference>
  25. <PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001">
  26. <PrivateAssets>all</PrivateAssets>
  27. <ExcludeAssets>runtime</ExcludeAssets>
  28. </PackageReference>
  29. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001">
  30. <PrivateAssets>all</PrivateAssets>
  31. <ExcludeAssets>runtime</ExcludeAssets>
  32. </PackageReference>
  33. </ItemGroup>
  34. <ItemGroup>
  35. <Compile Include="Tilemap\Extensions.cs" />
  36. <Compile Include="Tilemap\Tile.cs" />
  37. <Compile Include="Tilemap\Tilemap.cs" />
  38. <Compile Include="ContentReaders\TilemapReader.cs" />
  39. <Compile Include="Properties\AssemblyInfo.cs" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <ProjectReference Include="..\Shaders\Tilemap\Aether.Shaders.Tilemap.NETSTANDARD.csproj" />
  43. </ItemGroup>
  44. </Project>