123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <Project Sdk="Microsoft.NET.Sdk">
- <Import Project="..\..\Package.props" />
- <PropertyGroup>
- <Version>1.5.0.0</Version>
- <AssemblyVersion>1.5.0.0</AssemblyVersion>
- <copyright>Copyright © Kastellanos Nikolaos 2016-2025</copyright>
- <PackageId>nkast.Aether.Content.Pipeline.GraphicsImporters</PackageId>
- <Description>Content Importers for Kni Content Pipeline</Description>
- <PackageTags>C# Graphics KNI Content Pipeline</PackageTags>
- <PackageReadmeFile>README.md</PackageReadmeFile>
- </PropertyGroup>
- <PropertyGroup>
- <ProjectGuid>{400DC7B2-739D-4156-916D-2F2E1920310D}</ProjectGuid>
- <EnableDefaultItems>false</EnableDefaultItems>
- <TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
- <OutputType>Library</OutputType>
- <RootNamespace>nkast.Aether.Content.Pipeline</RootNamespace>
- <AssemblyName>Aether.Content.Pipeline.GraphicsImporters</AssemblyName>
- <OutputPath>..\..\Artifacts\$(Configuration)\Processors\</OutputPath>
- <DefineConstants>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" />
- <PackageReference Include="nkast.Xna.Framework.Content.Pipeline" Version="4.0.9001" />
- <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Graphics" Version="4.0.9001" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Graphics\DynamicIndexBufferContent.cs" />
- <Compile Include="Graphics\DynamicModelContent.cs" />
- <Compile Include="Graphics\DynamicModelMeshContent.cs" />
- <Compile Include="Graphics\DynamicModelMeshPartContent.cs" />
- <Compile Include="Graphics\DynamicVertexBufferContent.cs" />
- <Compile Include="Processors\DynamicModelProcessor.cs" />
- <Compile Include="Serialization\DynamicIndexBufferWriter.cs" />
- <Compile Include="Serialization\DynamicModelWriter.cs" />
- <Compile Include="Serialization\DynamicVertexBufferWriter.cs" />
- </ItemGroup>
- <ItemGroup>
- <None Include="README.md">
- <Pack>True</Pack>
- <PackagePath>\</PackagePath>
- </None>
- </ItemGroup>
- </Project>
|