SLMCImporter.NETSTANDARD.csproj 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.11.9002">
  22. <PrivateAssets>all</PrivateAssets>
  23. <ExcludeAssets>runtime</ExcludeAssets>
  24. </PackageReference>
  25. <PackageReference Include="nkast.Xna.Framework.Content" Version="3.11.9002">
  26. <PrivateAssets>all</PrivateAssets>
  27. <ExcludeAssets>runtime</ExcludeAssets>
  28. </PackageReference>
  29. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.11.9002">
  30. <PrivateAssets>all</PrivateAssets>
  31. <ExcludeAssets>runtime</ExcludeAssets>
  32. </PackageReference>
  33. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline" Version="3.11.9002">
  34. <PrivateAssets>all</PrivateAssets>
  35. <ExcludeAssets>runtime</ExcludeAssets>
  36. </PackageReference>
  37. <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Graphics" Version="3.11.9002">
  38. <PrivateAssets>all</PrivateAssets>
  39. <ExcludeAssets>runtime</ExcludeAssets>
  40. </PackageReference>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <Compile Include="Processors\SLMCProcessor.cs" />
  44. <Compile Include="Processors\SLMCOutputFormat.cs" />
  45. <Compile Include="SLMCImporter.cs" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Compile Include="Properties\AssemblyInfo.cs" />
  49. </ItemGroup>
  50. </Project>