Aether.Graphics.csproj 1.3 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <ProjectGuid>{0A4ED2DF-9CDD-4C98-83AA-1898A394AC27}</ProjectGuid>
  4. <EnableDefaultItems>false</EnableDefaultItems>
  5. <TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
  6. <OutputType>Library</OutputType>
  7. <RootNamespace>nkast.Aether.Graphics</RootNamespace>
  8. <AssemblyName>Aether.Graphics</AssemblyName>
  9. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  10. <OutputPath>..\Artifacts\$(Configuration)\Libraries\</OutputPath>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  13. <DefineConstants>TRACE;DEBUG;WINDOWS KNI</DefineConstants>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  16. <DefineConstants>TRACE;WINDOWS KNI</DefineConstants>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <PackageReference Include="nkast.Xna.Framework" Version="4.0.9001" />
  20. <PackageReference Include="nkast.Xna.Framework.Content" Version="4.0.9001" />
  21. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="4.0.9001" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <Compile Include="ContentReaders\DynamicIndexBufferReader.cs" />
  25. <Compile Include="ContentReaders\DynamicVertexBufferReader.cs" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Compile Include="Properties\AssemblyInfo.cs" />
  29. </ItemGroup>
  30. </Project>