Emby.Dlna.csproj 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
  3. <PropertyGroup>
  4. <ProjectGuid>{805844AB-E92F-45E6-9D99-4F6D48D129A5}</ProjectGuid>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <Compile Include="..\SharedVersion.cs" />
  8. </ItemGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
  11. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj" />
  12. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj" />
  13. <ProjectReference Include="..\RSSDP\RSSDP.csproj" />
  14. </ItemGroup>
  15. <PropertyGroup>
  16. <TargetFramework>net5.0</TargetFramework>
  17. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  18. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  19. <AnalysisMode>AllDisabledByDefault</AnalysisMode>
  20. </PropertyGroup>
  21. <!-- Code Analyzers-->
  22. <ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
  23. <PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
  24. <PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
  25. <PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <EmbeddedResource Include="Images\logo120.jpg" />
  29. <EmbeddedResource Include="Images\logo120.png" />
  30. <EmbeddedResource Include="Images\logo240.jpg" />
  31. <EmbeddedResource Include="Images\logo240.png" />
  32. <EmbeddedResource Include="Images\logo48.jpg" />
  33. <EmbeddedResource Include="Images\logo48.png" />
  34. <EmbeddedResource Include="Images\people48.jpg" />
  35. <EmbeddedResource Include="Images\people48.png" />
  36. <EmbeddedResource Include="Images\people480.jpg" />
  37. <EmbeddedResource Include="Images\people480.png" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <EmbeddedResource Include="Profiles\Xml\Default.xml" />
  41. <EmbeddedResource Include="Profiles\Xml\Denon AVR.xml" />
  42. <EmbeddedResource Include="Profiles\Xml\DirecTV HD-DVR.xml" />
  43. <EmbeddedResource Include="Profiles\Xml\Dish Hopper-Joey.xml" />
  44. <EmbeddedResource Include="Profiles\Xml\foobar2000.xml" />
  45. <EmbeddedResource Include="Profiles\Xml\LG Smart TV.xml" />
  46. <EmbeddedResource Include="Profiles\Xml\Linksys DMA2100.xml" />
  47. <EmbeddedResource Include="Profiles\Xml\Marantz.xml" />
  48. <EmbeddedResource Include="Profiles\Xml\MediaMonkey.xml" />
  49. <EmbeddedResource Include="Profiles\Xml\Panasonic Viera.xml" />
  50. <EmbeddedResource Include="Profiles\Xml\Popcorn Hour.xml" />
  51. <EmbeddedResource Include="Profiles\Xml\Samsung Smart TV.xml" />
  52. <EmbeddedResource Include="Profiles\Xml\Sony Blu-ray Player 2013.xml" />
  53. <EmbeddedResource Include="Profiles\Xml\Sony Blu-ray Player 2014.xml" />
  54. <EmbeddedResource Include="Profiles\Xml\Sony Blu-ray Player 2015.xml" />
  55. <EmbeddedResource Include="Profiles\Xml\Sony Blu-ray Player 2016.xml" />
  56. <EmbeddedResource Include="Profiles\Xml\Sony Blu-ray Player.xml" />
  57. <EmbeddedResource Include="Profiles\Xml\Sony Bravia %282010%29.xml" />
  58. <EmbeddedResource Include="Profiles\Xml\Sony Bravia %282011%29.xml" />
  59. <EmbeddedResource Include="Profiles\Xml\Sony Bravia %282012%29.xml" />
  60. <EmbeddedResource Include="Profiles\Xml\Sony Bravia %282013%29.xml" />
  61. <EmbeddedResource Include="Profiles\Xml\Sony Bravia %282014%29.xml" />
  62. <EmbeddedResource Include="Profiles\Xml\Sony PlayStation 3.xml" />
  63. <EmbeddedResource Include="Profiles\Xml\Sony PlayStation 4.xml" />
  64. <EmbeddedResource Include="Profiles\Xml\WDTV Live.xml" />
  65. <EmbeddedResource Include="Profiles\Xml\Xbox One.xml" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />
  69. </ItemGroup>
  70. </Project>