MediaBrowser.Common.csproj 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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>{9142EEFA-7570-41E1-BFCC-468BB571AF2F}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.Common</RootNamespace>
  11. <AssemblyName>MediaBrowser.Common</AssemblyName>
  12. <FileAlignment>512</FileAlignment>
  13. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  14. <RestorePackages>true</RestorePackages>
  15. <ProductVersion>10.0.0</ProductVersion>
  16. <SchemaVersion>2.0</SchemaVersion>
  17. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  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. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  38. </PropertyGroup>
  39. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release Mono|AnyCPU' ">
  40. <DebugType>pdbonly</DebugType>
  41. <Optimize>true</Optimize>
  42. <OutputPath>bin\Release Mono\</OutputPath>
  43. <DefineConstants>TRACE</DefineConstants>
  44. <ErrorReport>prompt</ErrorReport>
  45. <WarningLevel>4</WarningLevel>
  46. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  47. </PropertyGroup>
  48. <ItemGroup>
  49. <Reference Include="System" />
  50. <Reference Include="System.Core" />
  51. <Reference Include="Microsoft.CSharp" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Compile Include="..\SharedVersion.cs">
  55. <Link>Properties\SharedVersion.cs</Link>
  56. </Compile>
  57. <Compile Include="Configuration\ConfigurationHelper.cs" />
  58. <Compile Include="Configuration\IConfigurationManager.cs" />
  59. <Compile Include="Constants\Constants.cs" />
  60. <Compile Include="Events\EventHelper.cs" />
  61. <Compile Include="Extensions\BaseExtensions.cs" />
  62. <Compile Include="Events\GenericEventArgs.cs" />
  63. <Compile Include="Extensions\ResourceNotFoundException.cs" />
  64. <Compile Include="IO\FileSystemRepository.cs" />
  65. <Compile Include="IO\IFileSystem.cs" />
  66. <Compile Include="IO\ProgressStream.cs" />
  67. <Compile Include="IO\StreamDefaults.cs" />
  68. <Compile Include="Net\BasePeriodicWebSocketListener.cs" />
  69. <Compile Include="Configuration\IApplicationPaths.cs" />
  70. <Compile Include="Net\HttpRequestOptions.cs" />
  71. <Compile Include="Net\HttpResponseInfo.cs" />
  72. <Compile Include="Net\IServerManager.cs" />
  73. <Compile Include="Net\IWebSocketListener.cs" />
  74. <Compile Include="IApplicationHost.cs" />
  75. <Compile Include="Net\IHttpClient.cs" />
  76. <Compile Include="Net\INetworkManager.cs" />
  77. <Compile Include="Net\IWebSocket.cs" />
  78. <Compile Include="Net\IWebSocketConnection.cs" />
  79. <Compile Include="Net\IWebSocketServer.cs" />
  80. <Compile Include="Net\MimeTypes.cs" />
  81. <Compile Include="Net\WebSocketConnectEventArgs.cs" />
  82. <Compile Include="Plugins\IDependencyModule.cs" />
  83. <Compile Include="Plugins\IPlugin.cs" />
  84. <Compile Include="Progress\ActionableProgress.cs" />
  85. <Compile Include="ScheduledTasks\IScheduledTask.cs" />
  86. <Compile Include="ScheduledTasks\IScheduledTaskWorker.cs" />
  87. <Compile Include="ScheduledTasks\ITaskManager.cs" />
  88. <Compile Include="ScheduledTasks\ITaskTrigger.cs" />
  89. <Compile Include="ScheduledTasks\ScheduledTaskHelpers.cs" />
  90. <Compile Include="ScheduledTasks\StartupTrigger.cs" />
  91. <Compile Include="ScheduledTasks\SystemEventTrigger.cs" />
  92. <Compile Include="Plugins\BasePlugin.cs" />
  93. <Compile Include="Properties\AssemblyInfo.cs" />
  94. <Compile Include="ScheduledTasks\DailyTrigger.cs" />
  95. <Compile Include="ScheduledTasks\IntervalTrigger.cs" />
  96. <Compile Include="ScheduledTasks\TaskCompletionEventArgs.cs" />
  97. <Compile Include="ScheduledTasks\WeeklyTrigger.cs" />
  98. <Compile Include="Security\IRequiresRegistration.cs" />
  99. <Compile Include="Security\ISecurityManager.cs" />
  100. <Compile Include="Updates\IInstallationManager.cs" />
  101. <Compile Include="Updates\InstallationEventArgs.cs" />
  102. </ItemGroup>
  103. <ItemGroup>
  104. <None Include="app.config" />
  105. </ItemGroup>
  106. <ItemGroup>
  107. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  108. <Project>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</Project>
  109. <Name>MediaBrowser.Model</Name>
  110. </ProjectReference>
  111. </ItemGroup>
  112. <ItemGroup />
  113. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  114. <Import Project="$(SolutionDir)\.nuget\nuget.targets" Condition=" '$(ConfigurationName)' != 'Release Mono' " />
  115. <PropertyGroup>
  116. <PostBuildEvent Condition=" '$(ConfigurationName)' != 'Release Mono' ">if '$(ConfigurationName)' == 'Release' (
  117. xcopy "$(TargetPath)" "$(SolutionDir)\Nuget\dlls\" /y /d /r /i
  118. )</PostBuildEvent>
  119. </PropertyGroup>
  120. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  121. Other similar extension points exist, see Microsoft.Common.targets.
  122. <Target Name="BeforeBuild">
  123. </Target>
  124. <Target Name="AfterBuild">
  125. </Target>
  126. -->
  127. </Project>