MediaBrowser.Common.csproj 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="ServiceStack.Text">
  34. <HintPath>..\packages\ServiceStack.Text.3.8.5\lib\net35\ServiceStack.Text.dll</HintPath>
  35. </Reference>
  36. <Reference Include="System" />
  37. <Reference Include="System.ComponentModel.Composition" />
  38. <Reference Include="System.Configuration" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Reactive, Version=1.0.10621.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  41. <SpecificVersion>False</SpecificVersion>
  42. <HintPath>..\packages\Rx-Main.1.0.11226\lib\Net4\System.Reactive.dll</HintPath>
  43. </Reference>
  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="Configuration\BaseApplicationConfiguration.cs" />
  52. <Compile Include="Events\GenericItemEventArgs.cs" />
  53. <Compile Include="Json\JsonSerializer.cs" />
  54. <Compile Include="Kernel\BaseKernel.cs" />
  55. <Compile Include="Kernel\KernelContext.cs" />
  56. <Compile Include="Logging\BaseLogger.cs" />
  57. <Compile Include="Logging\Logger.cs" />
  58. <Compile Include="Logging\LogRow.cs" />
  59. <Compile Include="Logging\LogSeverity.cs" />
  60. <Compile Include="Logging\StreamLogger.cs" />
  61. <Compile Include="Net\CollectionExtensions.cs" />
  62. <Compile Include="Net\Handlers\BaseEmbeddedResourceHandler.cs" />
  63. <Compile Include="Net\Handlers\BaseHandler.cs" />
  64. <Compile Include="Net\Handlers\BaseJsonHandler.cs" />
  65. <Compile Include="Net\HttpServer.cs" />
  66. <Compile Include="Net\Request.cs" />
  67. <Compile Include="Net\RequestContext.cs" />
  68. <Compile Include="Net\StreamExtensions.cs" />
  69. <Compile Include="Plugins\BasePlugin.cs" />
  70. <Compile Include="Properties\AssemblyInfo.cs" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <None Include="packages.config" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  77. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  78. <Name>MediaBrowser.Model</Name>
  79. </ProjectReference>
  80. </ItemGroup>
  81. <ItemGroup />
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  84. Other similar extension points exist, see Microsoft.Common.targets.
  85. <Target Name="BeforeBuild">
  86. </Target>
  87. <Target Name="AfterBuild">
  88. </Target>
  89. -->
  90. </Project>