| 123456789101112131415161718192021222324252627282930 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <ProjectGuid>{0A4ED2DF-9CDD-4C98-83AA-1898A394AC27}</ProjectGuid>
- <EnableDefaultItems>false</EnableDefaultItems>
- <TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
- <OutputType>Library</OutputType>
- <RootNamespace>nkast.Aether.Graphics</RootNamespace>
- <AssemblyName>Aether.Graphics</AssemblyName>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <OutputPath>..\Artifacts\$(Configuration)\Libraries\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DefineConstants>TRACE;DEBUG;WINDOWS KNI</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DefineConstants>TRACE;WINDOWS KNI</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="nkast.Xna.Framework" Version="4.0.9001" />
- <PackageReference Include="nkast.Xna.Framework.Content" Version="4.0.9001" />
- <PackageReference Include="nkast.Xna.Framework.Graphics" Version="4.0.9001" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="ContentReaders\DynamicIndexBufferReader.cs" />
- <Compile Include="ContentReaders\DynamicVertexBufferReader.cs" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- </Project>
|