123456789101112131415161718192021222324252627282930313233 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <ProjectGuid>{48E4029A-115C-4DC2-AF3A-0AB94F36BFC0}</ProjectGuid>
- <EnableDefaultItems>false</EnableDefaultItems>
- <TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
- <OutputType>Library</OutputType>
- <RootNamespace>nkast.Aether.Content.Pipeline</RootNamespace>
- <AssemblyName>Aether.Content.Pipeline.RawModelProcessor</AssemblyName>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <OutputPath>..\..\Artifacts\$(Configuration)\Processors\$(TargetFramework)\</OutputPath>
- <BaseIntermediateOutputPath>obj\$(TargetFramework)\</BaseIntermediateOutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DefineConstants>TRACE;WINDOWS MG</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="RawModelProcessor.cs" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- </Project>
|