SLMCImporter.NETSTANDARD.csproj 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.SLMCImporter</AssemblyName>
  8. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. <OutputPath>..\..\Artifacts\$(Configuration)\Processors\netstandard2.0\</OutputPath>
  11. <BaseIntermediateOutputPath>obj\netstandard2.0\</BaseIntermediateOutputPath>
  12. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  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="3.9.9001">
  22. <PrivateAssets>all</PrivateAssets>
  23. <ExcludeAssets>runtime</ExcludeAssets>
  24. </PackageReference>
  25. <PackageReference Include="nkast.Xna.Framework.Ref" Version="3.9.9001">
  26. <PrivateAssets>all</PrivateAssets>
  27. <ExcludeAssets>runtime</ExcludeAssets>
  28. </PackageReference>
  29. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline" Version="3.9.9001">
  30. <PrivateAssets>all</PrivateAssets>
  31. <ExcludeAssets>runtime</ExcludeAssets>
  32. </PackageReference>
  33. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Graphics" Version="3.9.9001">
  34. <PrivateAssets>all</PrivateAssets>
  35. <ExcludeAssets>runtime</ExcludeAssets>
  36. </PackageReference>
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Include="Processors\SLMCProcessor.cs" />
  40. <Compile Include="Processors\SLMCOutputFormat.cs" />
  41. <Compile Include="SLMCImporter.cs" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="Properties\AssemblyInfo.cs" />
  45. </ItemGroup>
  46. </Project>