Aether.Shaders.Deferred.csproj 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <ProjectGuid>{96105100-20DB-4187-9BCA-0A20AC9F1298}</ProjectGuid>
  4. <EnableDefaultItems>false</EnableDefaultItems>
  5. <TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
  6. <OutputType>Library</OutputType>
  7. <RootNamespace>nkast.Aether.Shaders</RootNamespace>
  8. <AssemblyName>Aether.Shaders.Deferred</AssemblyName>
  9. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  10. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. <OutputPath>..\..\Artifacts\$(Configuration)\Libraries\$(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.Graphics" Version="4.0.9001" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Compile Include="DeferredBasicEffect.cs" />
  26. <Compile Include="DeferredClearGBufferEffect.cs" />
  27. <Compile Include="DeferredCombineEffect.cs" />
  28. <Compile Include="DeferredPointLightEffect.cs" />
  29. <Compile Include="DeferredSpotLightEffect.cs" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Compile Include="Properties\AssemblyInfo.cs" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <EmbeddedResource Include="Resources\DeferredBasicEffect.dx11.fxo.10" />
  36. <EmbeddedResource Include="Resources\DeferredClearGBuffer.dx11.fxo.10" />
  37. <EmbeddedResource Include="Resources\DeferredCombine.dx11.fxo.10" />
  38. <EmbeddedResource Include="Resources\DeferredPointLight.dx11.fxo.10" />
  39. <EmbeddedResource Include="Resources\DeferredSpotLight.dx11.fxo.10" />
  40. <EmbeddedResource Include="Resources\DeferredBasicEffect.ogl.fxo.10" />
  41. <EmbeddedResource Include="Resources\DeferredClearGBuffer.ogl.fxo.10" />
  42. <EmbeddedResource Include="Resources\DeferredCombine.ogl.fxo.10" />
  43. <EmbeddedResource Include="Resources\DeferredPointLight.ogl.fxo.10" />
  44. <EmbeddedResource Include="Resources\DeferredSpotLight.ogl.fxo.10" />
  45. </ItemGroup>
  46. </Project>