RawModelProcessor.csproj 1.7 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <ProjectGuid>{48E4029A-115C-4DC2-AF3A-0AB94F36BFC0}</ProjectGuid>
  4. <EnableDefaultItems>false</EnableDefaultItems>
  5. <TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
  6. <OutputType>Library</OutputType>
  7. <RootNamespace>nkast.Aether.Content.Pipeline</RootNamespace>
  8. <AssemblyName>Aether.Content.Pipeline.RawModelProcessor</AssemblyName>
  9. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  10. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. <OutputPath>..\..\Artifacts\$(Configuration)\Processors\$(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. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline" Version="4.0.9001" />
  25. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Graphics" Version="4.0.9001" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Compile Include="RawModelProcessor.cs" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Compile Include="Properties\AssemblyInfo.cs" />
  32. </ItemGroup>
  33. </Project>