VoxelImporters.NETSTANDARD.csproj 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.Content.Pipeline</RootNamespace>
  7. <AssemblyName>Aether.Content.Pipeline.VoxelImporters</AssemblyName>
  8. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  11. <OutputPath>..\..\Artifacts\$(Configuration)\Processors\netstandard2.0\</OutputPath>
  12. <BaseIntermediateOutputPath>obj\netstandard2.0\</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="Microsoft.CSharp" Version="4.7.0" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <Compile Include="Vox\VoxImporter.cs" />
  25. <Compile Include="Vox\VoxHeader.cs" />
  26. <Compile Include="VertexPositionNormalColor.cs" />
  27. <Compile Include="VoxelContent.cs" />
  28. <Compile Include="VoxelModelImporter.cs" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Compile Include="Properties\AssemblyInfo.cs" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <PackageReference Include="nkast.Xna.Framework" Version="3.14.9001">
  35. <PrivateAssets>all</PrivateAssets>
  36. <ExcludeAssets>runtime</ExcludeAssets>
  37. </PackageReference>
  38. <PackageReference Include="nkast.Xna.Framework.Content" Version="3.14.9001">
  39. <PrivateAssets>all</PrivateAssets>
  40. <ExcludeAssets>runtime</ExcludeAssets>
  41. </PackageReference>
  42. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.14.9001">
  43. <PrivateAssets>all</PrivateAssets>
  44. <ExcludeAssets>runtime</ExcludeAssets>
  45. </PackageReference>
  46. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline" Version="3.14.9001">
  47. <PrivateAssets>all</PrivateAssets>
  48. <ExcludeAssets>runtime</ExcludeAssets>
  49. </PackageReference>
  50. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Graphics" Version="3.14.9001">
  51. <PrivateAssets>all</PrivateAssets>
  52. <ExcludeAssets>runtime</ExcludeAssets>
  53. </PackageReference>
  54. </ItemGroup>
  55. </Project>