MediaBrowser.Dlna.csproj 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{734098EB-6DC1-4DD0-A1CA-3140DCD2737C}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.Dlna</RootNamespace>
  11. <AssemblyName>MediaBrowser.Dlna</AssemblyName>
  12. <FileAlignment>512</FileAlignment>
  13. <ProductVersion>10.0.0</ProductVersion>
  14. <SchemaVersion>2.0</SchemaVersion>
  15. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release Mono|AnyCPU' ">
  37. <Optimize>false</Optimize>
  38. <OutputPath>bin\Release Mono</OutputPath>
  39. <WarningLevel>4</WarningLevel>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="System" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Xml.Linq" />
  45. <Reference Include="System.Data.DataSetExtensions" />
  46. <Reference Include="Microsoft.CSharp" />
  47. <Reference Include="System.Data" />
  48. <Reference Include="System.Xml" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="..\SharedVersion.cs">
  52. <Link>Properties\SharedVersion.cs</Link>
  53. </Compile>
  54. <Compile Include="DlnaManager.cs" />
  55. <Compile Include="Common\Argument.cs" />
  56. <Compile Include="PlayTo\CurrentIdEventArgs.cs" />
  57. <Compile Include="PlayTo\Device.cs">
  58. <SubType>Code</SubType>
  59. </Compile>
  60. <Compile Include="PlayTo\DeviceInfo.cs" />
  61. <Compile Include="Common\DeviceService.cs" />
  62. <Compile Include="PlayTo\DidlBuilder.cs" />
  63. <Compile Include="PlayTo\DlnaController.cs" />
  64. <Compile Include="PlayTo\Extensions.cs" />
  65. <Compile Include="PlayTo\PlaylistItem.cs">
  66. <SubType>Code</SubType>
  67. </Compile>
  68. <Compile Include="PlayTo\PlaylistItemFactory.cs" />
  69. <Compile Include="PlayTo\PlayToManager.cs" />
  70. <Compile Include="PlayTo\PlayToServerEntryPoint.cs" />
  71. <Compile Include="Common\ServiceAction.cs" />
  72. <Compile Include="Profiles\Foobar2000Profile.cs" />
  73. <Compile Include="Profiles\Windows81Profile.cs" />
  74. <Compile Include="Profiles\WindowsMediaCenterProfile.cs" />
  75. <Compile Include="Profiles\WindowsPhoneProfile.cs" />
  76. <Compile Include="Server\ControlHandler.cs" />
  77. <Compile Include="Server\ServiceActionListBuilder.cs" />
  78. <Compile Include="Server\ContentDirectoryXmlBuilder.cs" />
  79. <Compile Include="Server\Datagram.cs" />
  80. <Compile Include="Server\DescriptionXmlBuilder.cs" />
  81. <Compile Include="Ssdp\SsdpHelper.cs" />
  82. <Compile Include="PlayTo\SsdpHttpClient.cs" />
  83. <Compile Include="Common\StateVariable.cs" />
  84. <Compile Include="PlayTo\StreamHelper.cs" />
  85. <Compile Include="PlayTo\TransportCommands.cs" />
  86. <Compile Include="PlayTo\TransportStateEventArgs.cs" />
  87. <Compile Include="PlayTo\uBaseObject.cs" />
  88. <Compile Include="PlayTo\uContainer.cs" />
  89. <Compile Include="Common\DeviceIcon.cs" />
  90. <Compile Include="PlayTo\uParser.cs" />
  91. <Compile Include="PlayTo\uPnpNamespaces.cs" />
  92. <Compile Include="Profiles\DefaultProfile.cs" />
  93. <Compile Include="Profiles\DenonAvrProfile.cs" />
  94. <Compile Include="Profiles\LgTvProfile.cs" />
  95. <Compile Include="Profiles\LinksysDMA2100Profile.cs" />
  96. <Compile Include="Profiles\PanasonicVieraProfile.cs" />
  97. <Compile Include="Profiles\SamsungSmartTvProfile.cs" />
  98. <Compile Include="Profiles\SonyBlurayPlayer2013Profile.cs" />
  99. <Compile Include="Profiles\SonyBlurayPlayerProfile.cs" />
  100. <Compile Include="Profiles\SonyBravia2010Profile.cs" />
  101. <Compile Include="Profiles\SonyBravia2011Profile.cs" />
  102. <Compile Include="Profiles\SonyBravia2012Profile.cs" />
  103. <Compile Include="Profiles\SonyBravia2013Profile.cs" />
  104. <Compile Include="Profiles\SonyPs3Profile.cs" />
  105. <Compile Include="Profiles\WdtvLiveProfile.cs" />
  106. <Compile Include="Profiles\Xbox360Profile.cs" />
  107. <Compile Include="Profiles\XboxOneProfile.cs" />
  108. <Compile Include="Properties\AssemblyInfo.cs" />
  109. <Compile Include="Server\DlnaServerEntryPoint.cs" />
  110. <Compile Include="Server\Headers.cs" />
  111. <Compile Include="Server\SsdpHandler.cs" />
  112. <Compile Include="Server\UpnpDevice.cs" />
  113. </ItemGroup>
  114. <ItemGroup>
  115. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  116. <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>
  117. <Name>MediaBrowser.Common</Name>
  118. </ProjectReference>
  119. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  120. <Project>{17e1f4e6-8abd-4fe5-9ecf-43d4b6087ba2}</Project>
  121. <Name>MediaBrowser.Controller</Name>
  122. </ProjectReference>
  123. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  124. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  125. <Name>MediaBrowser.Model</Name>
  126. </ProjectReference>
  127. </ItemGroup>
  128. <ItemGroup>
  129. <EmbeddedResource Include="Profiles\Xml\Denon AVR.xml" />
  130. <EmbeddedResource Include="Profiles\Xml\foobar2000.xml" />
  131. <EmbeddedResource Include="Profiles\Xml\LG Smart TV.xml" />
  132. <EmbeddedResource Include="Profiles\Xml\Linksys DMA2100.xml" />
  133. <EmbeddedResource Include="Profiles\Xml\Panasonic Viera.xml" />
  134. <EmbeddedResource Include="Profiles\Xml\Samsung Smart TV.xml" />
  135. <EmbeddedResource Include="Profiles\Xml\Sony Blu-ray Player 2013.xml" />
  136. <EmbeddedResource Include="Profiles\Xml\Sony Blu-ray Player.xml" />
  137. <EmbeddedResource Include="Profiles\Xml\Sony Bravia %282010%29.xml" />
  138. <EmbeddedResource Include="Profiles\Xml\Sony Bravia %282011%29.xml" />
  139. <EmbeddedResource Include="Profiles\Xml\Sony Bravia %282012%29.xml" />
  140. <EmbeddedResource Include="Profiles\Xml\Sony Bravia %282013%29.xml" />
  141. <EmbeddedResource Include="Profiles\Xml\Sony PlayStation 3.xml" />
  142. <EmbeddedResource Include="Profiles\Xml\WDTV Live.xml" />
  143. <EmbeddedResource Include="Profiles\Xml\Xbox 360.xml" />
  144. <EmbeddedResource Include="Profiles\Xml\Xbox One.xml" />
  145. </ItemGroup>
  146. <ItemGroup>
  147. <EmbeddedResource Include="Profiles\Xml\Default.xml" />
  148. </ItemGroup>
  149. <ItemGroup>
  150. <EmbeddedResource Include="Images\logo120.jpg" />
  151. <EmbeddedResource Include="Images\logo120.png" />
  152. <EmbeddedResource Include="Images\logo48.jpg" />
  153. <EmbeddedResource Include="Images\logo48.png" />
  154. </ItemGroup>
  155. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  156. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  157. Other similar extension points exist, see Microsoft.Common.targets.
  158. <Target Name="BeforeBuild">
  159. </Target>
  160. <Target Name="AfterBuild">
  161. </Target>
  162. -->
  163. </Project>