RawModelProcessor.NETSTANDARD.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132
  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.RawModelProcessor</AssemblyName>
  8. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. <OutputPath>..\..\Artifacts\$(Configuration)\Processors\netstandard2.0\</OutputPath>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  13. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  16. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <PackageReference Include="MonoGame.Framework.Portable.9000" Version="3.8.9101">
  20. <PrivateAssets>all</PrivateAssets>
  21. <ExcludeAssets>runtime</ExcludeAssets>
  22. </PackageReference>
  23. <PackageReference Include="MonoGame.Framework.Content.Pipeline.Portable.9000" Version="3.8.9101">
  24. <PrivateAssets>all</PrivateAssets>
  25. <ExcludeAssets>runtime</ExcludeAssets>
  26. </PackageReference>
  27. </ItemGroup>
  28. <ItemGroup>
  29. <Compile Include="RawModelProcessor.cs" />
  30. <Compile Include="Properties\AssemblyInfo.cs" />
  31. </ItemGroup>
  32. </Project>