Aether.Atlas.NETSTANDARD.csproj 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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.Atlas</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="Atlas\Extensions.cs" />
  36. <Compile Include="Atlas\Sprite.cs" />
  37. <Compile Include="Atlas\TextureAtlas.cs" />
  38. <Compile Include="ContentReaders\TextureAtlasReader.cs" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Include="Properties\AssemblyInfo.cs" />
  42. </ItemGroup>
  43. </Project>