MediaBrowser.Common.Implementations.csproj 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.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>{C4D2573A-3FD3-441F-81AF-174AC4CD4E1D}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.Common.Implementations</RootNamespace>
  11. <AssemblyName>MediaBrowser.Common.Implementations</AssemblyName>
  12. <FileAlignment>512</FileAlignment>
  13. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  14. <ProductVersion>10.0.0</ProductVersion>
  15. <SchemaVersion>2.0</SchemaVersion>
  16. <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
  17. <TargetFrameworkProfile />
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>bin\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>none</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release Mono|AnyCPU' ">
  37. <DebugType>none</DebugType>
  38. <Optimize>true</Optimize>
  39. <OutputPath>bin\Release Mono\</OutputPath>
  40. <DefineConstants>TRACE</DefineConstants>
  41. <ErrorReport>prompt</ErrorReport>
  42. <WarningLevel>4</WarningLevel>
  43. </PropertyGroup>
  44. <PropertyGroup>
  45. <RunPostBuildEvent>Always</RunPostBuildEvent>
  46. </PropertyGroup>
  47. <ItemGroup>
  48. <Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
  49. <HintPath>..\packages\NLog.4.3.10\lib\net45\NLog.dll</HintPath>
  50. <Private>True</Private>
  51. </Reference>
  52. <Reference Include="Patterns.Logging">
  53. <HintPath>..\packages\Patterns.Logging.1.0.0.2\lib\portable-net45+sl4+wp71+win8+wpa81\Patterns.Logging.dll</HintPath>
  54. </Reference>
  55. <Reference Include="SimpleInjector, Version=3.2.4.0, Culture=neutral, PublicKeyToken=984cb50dea722e99, processorArchitecture=MSIL">
  56. <HintPath>..\packages\SimpleInjector.3.2.4\lib\net45\SimpleInjector.dll</HintPath>
  57. <Private>True</Private>
  58. </Reference>
  59. <Reference Include="System" />
  60. <Reference Include="System.Configuration" />
  61. <Reference Include="System.Core" />
  62. <Reference Include="Microsoft.CSharp" />
  63. <Reference Include="System.Net" />
  64. <Reference Include="System.Xml" />
  65. <Reference Include="ServiceStack.Text">
  66. <HintPath>..\ThirdParty\ServiceStack.Text\ServiceStack.Text.dll</HintPath>
  67. </Reference>
  68. </ItemGroup>
  69. <ItemGroup>
  70. <Compile Include="..\SharedVersion.cs">
  71. <Link>Properties\SharedVersion.cs</Link>
  72. </Compile>
  73. <Compile Include="BaseApplicationHost.cs" />
  74. <Compile Include="BaseApplicationPaths.cs" />
  75. <Compile Include="Configuration\BaseConfigurationManager.cs" />
  76. <Compile Include="Configuration\ConfigurationHelper.cs" />
  77. <Compile Include="Cryptography\CryptographyProvider.cs" />
  78. <Compile Include="Devices\DeviceId.cs" />
  79. <Compile Include="HttpClientManager\HttpClientInfo.cs" />
  80. <Compile Include="HttpClientManager\HttpClientManager.cs" />
  81. <Compile Include="IO\IsoManager.cs" />
  82. <Compile Include="IO\LnkShortcutHandler.cs" />
  83. <Compile Include="IO\ManagedFileSystem.cs" />
  84. <Compile Include="IO\WindowsFileSystem.cs" />
  85. <Compile Include="Logging\LogHelper.cs" />
  86. <Compile Include="Logging\NLogger.cs" />
  87. <Compile Include="Logging\NlogManager.cs" />
  88. <Compile Include="Networking\BaseNetworkManager.cs" />
  89. <Compile Include="Properties\AssemblyInfo.cs" />
  90. <Compile Include="ScheduledTasks\DailyTrigger.cs" />
  91. <Compile Include="ScheduledTasks\IntervalTrigger.cs" />
  92. <Compile Include="ScheduledTasks\ScheduledTaskWorker.cs" />
  93. <Compile Include="ScheduledTasks\StartupTrigger.cs" />
  94. <Compile Include="ScheduledTasks\SystemEventTrigger.cs" />
  95. <Compile Include="ScheduledTasks\TaskManager.cs" />
  96. <Compile Include="ScheduledTasks\Tasks\DeleteCacheFileTask.cs" />
  97. <Compile Include="ScheduledTasks\Tasks\DeleteLogFileTask.cs" />
  98. <Compile Include="ScheduledTasks\Tasks\ReloadLoggerFileTask.cs" />
  99. <Compile Include="ScheduledTasks\WeeklyTrigger.cs" />
  100. <Compile Include="Security\MbAdmin.cs" />
  101. <Compile Include="Security\MBLicenseFile.cs" />
  102. <Compile Include="Security\PluginSecurityManager.cs" />
  103. <Compile Include="Security\RegRecord.cs" />
  104. <Compile Include="Security\SuppporterInfoResponse.cs" />
  105. <Compile Include="Serialization\JsonSerializer.cs" />
  106. <Compile Include="Serialization\XmlSerializer.cs" />
  107. <Compile Include="Updates\GithubUpdater.cs" />
  108. <Compile Include="Updates\InstallationManager.cs" />
  109. </ItemGroup>
  110. <ItemGroup>
  111. <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">
  112. <Project>{9142EEFA-7570-41E1-BFCC-468BB571AF2F}</Project>
  113. <Name>MediaBrowser.Common</Name>
  114. </ProjectReference>
  115. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  116. <Project>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</Project>
  117. <Name>MediaBrowser.Model</Name>
  118. </ProjectReference>
  119. </ItemGroup>
  120. <ItemGroup>
  121. <None Include="packages.config" />
  122. </ItemGroup>
  123. <ItemGroup />
  124. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  125. <PropertyGroup>
  126. <PostBuildEvent />
  127. </PropertyGroup>
  128. <PropertyGroup>
  129. <PostBuildEvent />
  130. </PropertyGroup>
  131. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  132. Other similar extension points exist, see Microsoft.Common.targets.
  133. <Target Name="BeforeBuild">
  134. </Target>
  135. <Target Name="AfterBuild">
  136. </Target>
  137. -->
  138. </Project>