Aether.Graphics.csproj 1.5 KB

1234567891011121314151617181920212223242526272829303132
  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. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. <OutputPath>..\Artifacts\$(Configuration)\Libraries\$(TargetFramework)\</OutputPath>
  12. <BaseIntermediateOutputPath>obj\$(TargetFramework)\</BaseIntermediateOutputPath>
  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="4.0.9001" />
  22. <PackageReference Include="nkast.Xna.Framework.Content" Version="4.0.9001" />
  23. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="4.0.9001" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <Compile Include="ContentReaders\DynamicIndexBufferReader.cs" />
  27. <Compile Include="ContentReaders\DynamicVertexBufferReader.cs" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Compile Include="Properties\AssemblyInfo.cs" />
  31. </ItemGroup>
  32. </Project>