Aether.Shaders.Deferred.NETSTANDARD.csproj 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.Shaders</RootNamespace>
  7. <AssemblyName>Aether.Shaders.Deferred</AssemblyName>
  8. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. <OutputPath>..\..\Artifacts\$(Configuration)\Libraries\netstandard2.0\</OutputPath>
  11. <BaseIntermediateOutputPath>obj\netstandard2.0\</BaseIntermediateOutputPath>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  17. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <PackageReference Include="nkast.Xna.Framework" Version="3.13.9001">
  21. <PrivateAssets>all</PrivateAssets>
  22. <ExcludeAssets>runtime</ExcludeAssets>
  23. </PackageReference>
  24. <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001">
  25. <PrivateAssets>all</PrivateAssets>
  26. <ExcludeAssets>runtime</ExcludeAssets>
  27. </PackageReference>
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Compile Include="DeferredBasicEffect.cs" />
  31. <Compile Include="DeferredClearGBufferEffect.cs" />
  32. <Compile Include="DeferredCombineEffect.cs" />
  33. <Compile Include="DeferredPointLightEffect.cs" />
  34. <Compile Include="DeferredSpotLightEffect.cs" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Compile Include="Properties\AssemblyInfo.cs" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <EmbeddedResource Include="Resources\DeferredBasicEffect.dx11.fxo.10" />
  41. <EmbeddedResource Include="Resources\DeferredClearGBuffer.dx11.fxo.10" />
  42. <EmbeddedResource Include="Resources\DeferredCombine.dx11.fxo.10" />
  43. <EmbeddedResource Include="Resources\DeferredPointLight.dx11.fxo.10" />
  44. <EmbeddedResource Include="Resources\DeferredSpotLight.dx11.fxo.10" />
  45. <EmbeddedResource Include="Resources\DeferredBasicEffect.ogl.fxo.10" />
  46. <EmbeddedResource Include="Resources\DeferredClearGBuffer.ogl.fxo.10" />
  47. <EmbeddedResource Include="Resources\DeferredCombine.ogl.fxo.10" />
  48. <EmbeddedResource Include="Resources\DeferredPointLight.ogl.fxo.10" />
  49. <EmbeddedResource Include="Resources\DeferredSpotLight.ogl.fxo.10" />
  50. </ItemGroup>
  51. </Project>