MediaBrowser.Server.Mono.csproj 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{175A9388-F352-4586-A6B4-070DED62B644}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>MediaBrowser.Server.Mono</RootNamespace>
  11. <AssemblyName>MediaBrowser.Server.Mono</AssemblyName>
  12. <StartupObject>MediaBrowser.Server.Mono.MainClass</StartupObject>
  13. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug</OutputPath>
  21. <DefineConstants>DEBUG;</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <PlatformTarget>x86</PlatformTarget>
  25. <Externalconsole>true</Externalconsole>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  28. <DebugType>full</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release</OutputPath>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <PlatformTarget>AnyCPU</PlatformTarget>
  34. <Externalconsole>true</Externalconsole>
  35. <Prefer32Bit>false</Prefer32Bit>
  36. </PropertyGroup>
  37. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  38. <Optimize>false</Optimize>
  39. <OutputPath>bin\Release</OutputPath>
  40. <WarningLevel>4</WarningLevel>
  41. <PlatformTarget>AnyCPU</PlatformTarget>
  42. <Prefer32Bit>false</Prefer32Bit>
  43. </PropertyGroup>
  44. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release Mono|AnyCPU' ">
  45. <Optimize>false</Optimize>
  46. <OutputPath>bin\Release Mono</OutputPath>
  47. <WarningLevel>4</WarningLevel>
  48. <PlatformTarget>AnyCPU</PlatformTarget>
  49. <Prefer32Bit>false</Prefer32Bit>
  50. </PropertyGroup>
  51. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release Mono|x86'">
  52. <Prefer32Bit>false</Prefer32Bit>
  53. </PropertyGroup>
  54. <ItemGroup>
  55. <Reference Include="CommonIO, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  56. <SpecificVersion>False</SpecificVersion>
  57. <HintPath>..\packages\CommonIO.1.0.0.9\lib\net45\CommonIO.dll</HintPath>
  58. </Reference>
  59. <Reference Include="Mono.Posix, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
  60. <SpecificVersion>False</SpecificVersion>
  61. <HintPath>..\packages\Mono.Posix.4.0.0.0\lib\net40\Mono.Posix.dll</HintPath>
  62. </Reference>
  63. <Reference Include="Mono.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
  64. <SpecificVersion>False</SpecificVersion>
  65. <HintPath>..\ThirdParty\Mono.Security\Mono.Security.dll</HintPath>
  66. <Private>False</Private>
  67. </Reference>
  68. <Reference Include="Patterns.Logging, Version=1.0.5494.41209, Culture=neutral, processorArchitecture=MSIL">
  69. <SpecificVersion>False</SpecificVersion>
  70. <HintPath>..\packages\Patterns.Logging.1.0.0.2\lib\portable-net45+sl4+wp71+win8+wpa81\Patterns.Logging.dll</HintPath>
  71. </Reference>
  72. <Reference Include="System" />
  73. <Reference Include="ServiceStack.Interfaces">
  74. <HintPath>..\ThirdParty\ServiceStack\ServiceStack.Interfaces.dll</HintPath>
  75. </Reference>
  76. <Reference Include="MediaBrowser.IsoMounting.Linux">
  77. <HintPath>..\ThirdParty\MediaBrowser.IsoMounting.Linux\MediaBrowser.IsoMounting.Linux.dll</HintPath>
  78. </Reference>
  79. <Reference Include="System.Data" />
  80. <Reference Include="System.Data.SQLite">
  81. <HintPath>..\ThirdParty\System.Data.SQLite.ManagedOnly\1.0.94.0\System.Data.SQLite.dll</HintPath>
  82. </Reference>
  83. </ItemGroup>
  84. <ItemGroup>
  85. <Compile Include="..\SharedVersion.cs">
  86. <Link>Properties\SharedVersion.cs</Link>
  87. </Compile>
  88. <Compile Include="Native\BaseMonoApp.cs" />
  89. <Compile Include="Native\SqliteExtensions.cs" />
  90. <Compile Include="Networking\CertificateGenerator.cs" />
  91. <Compile Include="Program.cs" />
  92. <Compile Include="Properties\AssemblyInfo.cs" />
  93. <Compile Include="Native\NativeApp.cs" />
  94. <Compile Include="Networking\NetworkManager.cs" />
  95. </ItemGroup>
  96. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  97. <ItemGroup>
  98. <ProjectReference Include="..\MediaBrowser.Server.Startup.Common\MediaBrowser.Server.Startup.Common.csproj">
  99. <Project>{b90ab8f2-1bff-4568-a3fd-2a338a435a75}</Project>
  100. <Name>MediaBrowser.Server.Startup.Common</Name>
  101. </ProjectReference>
  102. <ProjectReference Include="..\MediaBrowser.WebDashboard\MediaBrowser.WebDashboard.csproj">
  103. <Project>{5624B7B5-B5A7-41D8-9F10-CC5611109619}</Project>
  104. <Name>MediaBrowser.WebDashboard</Name>
  105. </ProjectReference>
  106. <ProjectReference Include="..\MediaBrowser.Server.Implementations\MediaBrowser.Server.Implementations.csproj">
  107. <Project>{2E781478-814D-4A48-9D80-BFF206441A65}</Project>
  108. <Name>MediaBrowser.Server.Implementations</Name>
  109. </ProjectReference>
  110. <ProjectReference Include="..\MediaBrowser.Providers\MediaBrowser.Providers.csproj">
  111. <Project>{442B5058-DCAF-4263-BB6A-F21E31120A1B}</Project>
  112. <Name>MediaBrowser.Providers</Name>
  113. </ProjectReference>
  114. <ProjectReference Include="..\MediaBrowser.Dlna\MediaBrowser.Dlna.csproj">
  115. <Project>{734098EB-6DC1-4DD0-A1CA-3140DCD2737C}</Project>
  116. <Name>MediaBrowser.Dlna</Name>
  117. </ProjectReference>
  118. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  119. <Project>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</Project>
  120. <Name>MediaBrowser.Model</Name>
  121. </ProjectReference>
  122. <ProjectReference Include="..\MediaBrowser.Controller\MediaBrowser.Controller.csproj">
  123. <Project>{17E1F4E6-8ABD-4FE5-9ECF-43D4B6087BA2}</Project>
  124. <Name>MediaBrowser.Controller</Name>
  125. </ProjectReference>
  126. <ProjectReference Include="..\MediaBrowser.Common.Implementations\MediaBrowser.Common.Implementations.csproj">
  127. <Project>{C4D2573A-3FD3-441F-81AF-174AC4CD4E1D}</Project>
  128. <Name>MediaBrowser.Common.Implementations</Name>
  129. </ProjectReference>
  130. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  131. <Project>{9142EEFA-7570-41E1-BFCC-468BB571AF2F}</Project>
  132. <Name>MediaBrowser.Common</Name>
  133. </ProjectReference>
  134. <ProjectReference Include="..\MediaBrowser.Api\MediaBrowser.Api.csproj">
  135. <Project>{4FD51AC5-2C16-4308-A993-C3A84F3B4582}</Project>
  136. <Name>MediaBrowser.Api</Name>
  137. </ProjectReference>
  138. <ProjectReference Include="..\MediaBrowser.MediaEncoding\MediaBrowser.MediaEncoding.csproj">
  139. <Project>{0BD82FA6-EB8A-4452-8AF5-74F9C3849451}</Project>
  140. <Name>MediaBrowser.MediaEncoding</Name>
  141. </ProjectReference>
  142. <ProjectReference Include="..\MediaBrowser.LocalMetadata\MediaBrowser.LocalMetadata.csproj">
  143. <Project>{7EF9F3E0-697D-42F3-A08F-19DEB5F84392}</Project>
  144. <Name>MediaBrowser.LocalMetadata</Name>
  145. </ProjectReference>
  146. <ProjectReference Include="..\MediaBrowser.XbmcMetadata\MediaBrowser.XbmcMetadata.csproj">
  147. <Project>{23499896-B135-4527-8574-C26E926EA99E}</Project>
  148. <Name>MediaBrowser.XbmcMetadata</Name>
  149. </ProjectReference>
  150. </ItemGroup>
  151. <ItemGroup>
  152. <None Include="..\ThirdParty\SQLite3\osx\libsqlite3.0.dylib">
  153. <Link>libsqlite3.0.dylib</Link>
  154. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  155. </None>
  156. <None Include="..\ThirdParty\SQLite3\osx\libsqlite3.dylib">
  157. <Link>libsqlite3.dylib</Link>
  158. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  159. </None>
  160. <None Include="app.config" />
  161. <None Include="ImageMagickSharp.dll.config">
  162. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  163. </None>
  164. <None Include="packages.config" />
  165. <None Include="System.Data.SQLite.dll.config">
  166. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  167. <SubType>Designer</SubType>
  168. </None>
  169. </ItemGroup>
  170. <ItemGroup />
  171. </Project>