12345678910111213141516171819202122232425262728293031323334353637383940 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <EnableDefaultItems>false</EnableDefaultItems>
- <TargetFramework>netstandard2.0</TargetFramework>
- <OutputType>Library</OutputType>
- <RootNamespace>nkast.Aether.Graphics</RootNamespace>
- <AssemblyName>Aether.Tilemap</AssemblyName>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <OutputPath>..\Artifacts\$(Configuration)\Libraries\netstandard2.0\</OutputPath>
- <BaseIntermediateOutputPath>obj\netstandard2.0\</BaseIntermediateOutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="nkast.Xna.Framework" Version="3.9.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- <PackageReference Include="nkast.Xna.Framework.Ref" Version="3.9.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Tilemap\Extensions.cs" />
- <Compile Include="Tilemap\Tile.cs" />
- <Compile Include="Tilemap\Tilemap.cs" />
- <Compile Include="ContentReaders\TilemapReader.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Shaders\Tilemap\Aether.Shaders.Tilemap.NETSTANDARD.csproj" />
- </ItemGroup>
- </Project>
|