Emby.Server.Core.csproj 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.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>{776B9F0C-5195-45E3-9A36-1CC1F0D8E0B0}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Emby.Server.Core</RootNamespace>
  11. <AssemblyName>Emby.Server.Core</AssemblyName>
  12. <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="Microsoft.IO.RecyclableMemoryStream, Version=1.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  37. <HintPath>..\packages\Microsoft.IO.RecyclableMemoryStream.1.2.2\lib\net45\Microsoft.IO.RecyclableMemoryStream.dll</HintPath>
  38. <Private>True</Private>
  39. </Reference>
  40. <Reference Include="ServiceStack.Text, Version=4.5.8.0, Culture=neutral, processorArchitecture=MSIL">
  41. <HintPath>..\packages\ServiceStack.Text.4.5.8\lib\net45\ServiceStack.Text.dll</HintPath>
  42. <Private>True</Private>
  43. </Reference>
  44. <Reference Include="SimpleInjector, Version=4.0.8.0, Culture=neutral, PublicKeyToken=984cb50dea722e99, processorArchitecture=MSIL">
  45. <HintPath>..\packages\SimpleInjector.4.0.8\lib\net45\SimpleInjector.dll</HintPath>
  46. </Reference>
  47. <Reference Include="System" />
  48. <Reference Include="System.Configuration" />
  49. <Reference Include="System.Core" />
  50. <Reference Include="System.Xml.Linq" />
  51. <Reference Include="System.Data.DataSetExtensions" />
  52. <Reference Include="Microsoft.CSharp" />
  53. <Reference Include="System.Data" />
  54. <Reference Include="System.Net.Http" />
  55. <Reference Include="System.Xml" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="..\SharedVersion.cs">
  59. <Link>Properties\SharedVersion.cs</Link>
  60. </Compile>
  61. <Compile Include="ApplicationHost.cs" />
  62. <Compile Include="ApplicationPathHelper.cs" />
  63. <Compile Include="Cryptography\ASN1.cs" />
  64. <Compile Include="Cryptography\ASN1Convert.cs" />
  65. <Compile Include="Cryptography\BitConverterLE.cs" />
  66. <Compile Include="Cryptography\CertificateGenerator.cs" />
  67. <Compile Include="Cryptography\CryptoConvert.cs" />
  68. <Compile Include="Cryptography\PfxGenerator.cs" />
  69. <Compile Include="Cryptography\PKCS1.cs" />
  70. <Compile Include="Cryptography\PKCS12.cs" />
  71. <Compile Include="Cryptography\PKCS7.cs" />
  72. <Compile Include="Cryptography\PKCS8.cs" />
  73. <Compile Include="Cryptography\X501Name.cs" />
  74. <Compile Include="Cryptography\X509Builder.cs" />
  75. <Compile Include="Cryptography\X509Certificate.cs" />
  76. <Compile Include="Cryptography\X509CertificateBuilder.cs" />
  77. <Compile Include="Cryptography\X509CertificateCollection.cs" />
  78. <Compile Include="Cryptography\X509Extension.cs" />
  79. <Compile Include="Cryptography\X509Extensions.cs" />
  80. <Compile Include="Cryptography\X520Attributes.cs" />
  81. <Compile Include="EntryPoints\ExternalPortForwarding.cs" />
  82. <Compile Include="HttpServerFactory.cs" />
  83. <Compile Include="IO\LibraryMonitor.cs" />
  84. <Compile Include="IO\MemoryStreamProvider.cs" />
  85. <Compile Include="Localization\TextLocalizer.cs" />
  86. <Compile Include="Logging\ConsoleLogger.cs" />
  87. <Compile Include="Properties\AssemblyInfo.cs" />
  88. <Compile Include="SystemEvents.cs" />
  89. </ItemGroup>
  90. <ItemGroup>
  91. <ProjectReference Include="..\Emby.Common.Implementations\Emby.Common.Implementations.csproj">
  92. <Project>{1e37a338-9f57-4b70-bd6d-bb9c591e319b}</Project>
  93. <Name>Emby.Common.Implementations</Name>
  94. </ProjectReference>
  95. <ProjectReference Include="..\Emby.Dlna\Emby.Dlna.csproj">
  96. <Project>{805844ab-e92f-45e6-9d99-4f6d48d129a5}</Project>
  97. <Name>Emby.Dlna</Name>
  98. </ProjectReference>
  99. <ProjectReference Include="..\Emby.Drawing\Emby.Drawing.csproj">
  100. <Project>{08fff49b-f175-4807-a2b5-73b0ebd9f716}</Project>
  101. <Name>Emby.Drawing</Name>
  102. </ProjectReference>
  103. <ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj">
  104. <Project>{89ab4548-770d-41fd-a891-8daff44f452c}</Project>
  105. <Name>Emby.Photos</Name>
  106. </ProjectReference>
  107. <ProjectReference Include="..\Emby.Server.Implementations\Emby.Server.Implementations.csproj">
  108. <Project>{e383961b-9356-4d5d-8233-9a1079d03055}</Project>
  109. <Name>Emby.Server.Implementations</Name>
  110. </ProjectReference>
  111. <ProjectReference Include="..\MediaBrowser.Api\MediaBrowser.Api.csproj">
  112. <Project>{4fd51ac5-2c16-4308-a993-c3a84f3b4582}</Project>
  113. <Name>MediaBrowser.Api</Name>
  114. </ProjectReference>
  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.LocalMetadata\MediaBrowser.LocalMetadata.csproj">
  124. <Project>{7ef9f3e0-697d-42f3-a08f-19deb5f84392}</Project>
  125. <Name>MediaBrowser.LocalMetadata</Name>
  126. </ProjectReference>
  127. <ProjectReference Include="..\MediaBrowser.MediaEncoding\MediaBrowser.MediaEncoding.csproj">
  128. <Project>{0bd82fa6-eb8a-4452-8af5-74f9c3849451}</Project>
  129. <Name>MediaBrowser.MediaEncoding</Name>
  130. </ProjectReference>
  131. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  132. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  133. <Name>MediaBrowser.Model</Name>
  134. </ProjectReference>
  135. <ProjectReference Include="..\MediaBrowser.Providers\MediaBrowser.Providers.csproj">
  136. <Project>{442b5058-dcaf-4263-bb6a-f21e31120a1b}</Project>
  137. <Name>MediaBrowser.Providers</Name>
  138. </ProjectReference>
  139. <ProjectReference Include="..\MediaBrowser.Server.Implementations\MediaBrowser.Server.Implementations.csproj">
  140. <Project>{2e781478-814d-4a48-9d80-bff206441a65}</Project>
  141. <Name>MediaBrowser.Server.Implementations</Name>
  142. </ProjectReference>
  143. <ProjectReference Include="..\MediaBrowser.WebDashboard\MediaBrowser.WebDashboard.csproj">
  144. <Project>{5624b7b5-b5a7-41d8-9f10-cc5611109619}</Project>
  145. <Name>MediaBrowser.WebDashboard</Name>
  146. </ProjectReference>
  147. <ProjectReference Include="..\MediaBrowser.XbmcMetadata\MediaBrowser.XbmcMetadata.csproj">
  148. <Project>{23499896-b135-4527-8574-c26e926ea99e}</Project>
  149. <Name>MediaBrowser.XbmcMetadata</Name>
  150. </ProjectReference>
  151. <ProjectReference Include="..\Mono.Nat\Mono.Nat.csproj">
  152. <Project>{cb7f2326-6497-4a3d-ba03-48513b17a7be}</Project>
  153. <Name>Mono.Nat</Name>
  154. </ProjectReference>
  155. <ProjectReference Include="..\OpenSubtitlesHandler\OpenSubtitlesHandler.csproj">
  156. <Project>{4a4402d4-e910-443b-b8fc-2c18286a2ca0}</Project>
  157. <Name>OpenSubtitlesHandler</Name>
  158. </ProjectReference>
  159. <ProjectReference Include="..\SocketHttpListener\SocketHttpListener.csproj">
  160. <Project>{1d74413b-e7cf-455b-b021-f52bdf881542}</Project>
  161. <Name>SocketHttpListener</Name>
  162. </ProjectReference>
  163. </ItemGroup>
  164. <ItemGroup>
  165. <None Include="app.config" />
  166. <None Include="packages.config" />
  167. </ItemGroup>
  168. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  169. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  170. Other similar extension points exist, see Microsoft.Common.targets.
  171. <Target Name="BeforeBuild">
  172. </Target>
  173. <Target Name="AfterBuild">
  174. </Target>
  175. -->
  176. </Project>