MediaBrowser.ApiInteraction.Metro.csproj 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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>{94CEA07A-307C-4663-AA43-7BD852808574}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MediaBrowser.ApiInteraction.Metro</RootNamespace>
  11. <AssemblyName>MediaBrowser.ApiInteraction.Metro</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>
  14. <FileAlignment>512</FileAlignment>
  15. <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <!-- A reference to the entire .NET Framework is automatically included -->
  36. <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">
  37. <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>
  38. <Name>MediaBrowser.Model</Name>
  39. </ProjectReference>
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Compile Include="..\MediaBrowser.ApiInteraction\BaseApiClient.cs">
  43. <Link>BaseApiClient.cs</Link>
  44. </Compile>
  45. <Compile Include="..\MediaBrowser.ApiInteraction\BaseHttpApiClient.cs">
  46. <Link>BaseHttpApiClient.cs</Link>
  47. </Compile>
  48. <Compile Include="..\MediaBrowser.ApiInteraction\SerializationFormats.cs">
  49. <Link>SerializationFormats.cs</Link>
  50. </Compile>
  51. <Compile Include="ApiClient.cs" />
  52. <Compile Include="DataSerializer.cs" />
  53. <Compile Include="Properties\AssemblyInfo.cs" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Reference Include="Newtonsoft.Json">
  57. <HintPath>..\Json.Net\Portable\Newtonsoft.Json.dll</HintPath>
  58. </Reference>
  59. <Reference Include="protobuf-net">
  60. <HintPath>..\protobuf-net\Full\portable\protobuf-net.dll</HintPath>
  61. </Reference>
  62. </ItemGroup>
  63. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
  64. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  65. Other similar extension points exist, see Microsoft.Common.targets.
  66. <Target Name="BeforeBuild">
  67. </Target>
  68. <Target Name="AfterBuild">
  69. </Target>
  70. -->
  71. </Project>