1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <EnableDefaultItems>false</EnableDefaultItems>
- <TargetFramework>netstandard2.0</TargetFramework>
- <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\netstandard2.0\</OutputPath>
- <BaseIntermediateOutputPath>obj\netstandard2.0\</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="3.12.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- <PackageReference Include="nkast.Xna.Framework.Content" Version="3.12.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.12.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- <PackageReference Include="nkast.Xna.Framework.Content.Pipeline" Version="3.12.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Graphics" Version="3.12.9001">
- <PrivateAssets>all</PrivateAssets>
- <ExcludeAssets>runtime</ExcludeAssets>
- </PackageReference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="RawModelProcessor.cs" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- </Project>
|