MediaBrowser.Common.csproj 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <FileAlignment>512</FileAlignment>
  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. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="PresentationCore" />
  35. <Reference Include="PresentationFramework" />
  36. <Reference Include="ServiceStack.Text, Version=3.9.3.0, Culture=neutral, processorArchitecture=MSIL">
  37. <SpecificVersion>False</SpecificVersion>
  38. <HintPath>..\packages\ServiceStack.Text.3.9.3\lib\net35\ServiceStack.Text.dll</HintPath>
  39. </Reference>
  40. <Reference Include="System" />
  41. <Reference Include="System.ComponentModel.Composition" />
  42. <Reference Include="System.Configuration" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Reactive, Version=1.0.10621.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  45. <SpecificVersion>False</SpecificVersion>
  46. <HintPath>..\packages\Rx-Main.1.0.11226\lib\Net4\System.Reactive.dll</HintPath>
  47. </Reference>
  48. <Reference Include="System.Runtime.Remoting" />
  49. <Reference Include="System.Xaml" />
  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.Xml" />
  55. <Reference Include="WindowsBase" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="Configuration\ApplicationPaths.cs" />
  59. <Compile Include="Configuration\BaseApplicationConfiguration.cs" />
  60. <Compile Include="Events\GenericItemEventArgs.cs" />
  61. <Compile Include="Serialization\JsonSerializer.cs" />
  62. <Compile Include="Kernel\BaseKernel.cs" />
  63. <Compile Include="Kernel\KernelContext.cs" />
  64. <Compile Include="Logging\BaseLogger.cs" />
  65. <Compile Include="Logging\Logger.cs" />
  66. <Compile Include="Logging\LogRow.cs" />
  67. <Compile Include="Logging\LogSeverity.cs" />
  68. <Compile Include="Logging\StreamLogger.cs" />
  69. <Compile Include="Net\CollectionExtensions.cs" />
  70. <Compile Include="Net\Handlers\BaseEmbeddedResourceHandler.cs" />
  71. <Compile Include="Net\Handlers\BaseHandler.cs" />
  72. <Compile Include="Net\Handlers\BaseJsonHandler.cs" />
  73. <Compile Include="Net\HttpServer.cs" />
  74. <Compile Include="Net\Request.cs" />
  75. <Compile Include="Net\RequestContext.cs" />
  76. <Compile Include="Net\StreamExtensions.cs" />
  77. <Compile Include="Plugins\BasePlugin.cs" />
  78. <Compile Include="Properties\AssemblyInfo.cs" />
  79. <Compile Include="UI\Splash.xaml.cs">
  80. <DependentUpon>Splash.xaml</DependentUpon>
  81. </Compile>
  82. <Compile Include="Util\SingleInstance.cs" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <None Include="packages.config" />
  86. </ItemGroup>
  87. <ItemGroup>
  88. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  89. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  90. <Name>MediaBrowser.Model</Name>
  91. </ProjectReference>
  92. </ItemGroup>
  93. <ItemGroup>
  94. <Page Include="UI\Splash.xaml">
  95. <SubType>Designer</SubType>
  96. <Generator>MSBuild:Compile</Generator>
  97. </Page>
  98. </ItemGroup>
  99. <ItemGroup />
  100. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  101. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  102. Other similar extension points exist, see Microsoft.Common.targets.
  103. <Target Name="BeforeBuild">
  104. </Target>
  105. <Target Name="AfterBuild">
  106. </Target>
  107. -->
  108. </Project>