| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 | <?xml version="1.0" encoding="utf-8"?><Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">  <PropertyGroup>    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>    <ProductVersion>9.0.30729</ProductVersion>    <SchemaVersion>2.0</SchemaVersion>    <ProjectGuid>{680A1709-25EB-4D52-A87F-EE03FFD94BAA}</ProjectGuid>    <OutputType>Library</OutputType>    <AppDesignerFolder>Properties</AppDesignerFolder>    <RootNamespace>ServiceStack</RootNamespace>    <AssemblyName>ServiceStack</AssemblyName>    <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>    <TargetFrameworkProfile>Profile7</TargetFrameworkProfile>    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>    <FileAlignment>512</FileAlignment>    <FileUpgradeFlags>    </FileUpgradeFlags>    <OldToolsVersion>3.5</OldToolsVersion>    <UpgradeBackupLocation />    <PublishUrl>publish\</PublishUrl>    <Install>true</Install>    <InstallFrom>Disk</InstallFrom>    <UpdateEnabled>false</UpdateEnabled>    <UpdateMode>Foreground</UpdateMode>    <UpdateInterval>7</UpdateInterval>    <UpdateIntervalUnits>Days</UpdateIntervalUnits>    <UpdatePeriodically>false</UpdatePeriodically>    <UpdateRequired>false</UpdateRequired>    <MapFileExtensions>true</MapFileExtensions>    <ApplicationRevision>0</ApplicationRevision>    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>    <IsWebBootstrapper>false</IsWebBootstrapper>    <UseApplicationTrust>false</UseApplicationTrust>    <BootstrapperEnabled>true</BootstrapperEnabled>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">    <DebugSymbols>True</DebugSymbols>    <DebugType>full</DebugType>    <Optimize>False</Optimize>    <OutputPath>bin\Debug\</OutputPath>    <DefineConstants>TRACE;DEBUG;MONO</DefineConstants>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>    <Prefer32Bit>false</Prefer32Bit>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">    <DebugType>pdbonly</DebugType>    <Optimize>True</Optimize>    <OutputPath>bin\Release\</OutputPath>    <DefineConstants>TRACE</DefineConstants>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>    <DocumentationFile>    </DocumentationFile>    <Prefer32Bit>false</Prefer32Bit>  </PropertyGroup>  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">    <OutputPath>bin\Signed\</OutputPath>    <DefineConstants>TRACE</DefineConstants>    <DocumentationFile>bin\Release\ServiceStack.XML</DocumentationFile>    <Optimize>true</Optimize>    <DebugType>pdbonly</DebugType>    <PlatformTarget>AnyCPU</PlatformTarget>    <ErrorReport>prompt</ErrorReport>    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>    <Prefer32Bit>false</Prefer32Bit>  </PropertyGroup>  <ItemGroup>    <Compile Include="HttpUtils.cs" />    <Compile Include="Host\ContentTypes.cs" />    <Compile Include="ReflectionExtensions.cs" />    <Compile Include="StringMapTypeDeserializer.cs" />    <Compile Include="HttpResult.cs" />    <Compile Include="ServiceStackHost.cs" />    <Compile Include="ServiceStackHost.Runtime.cs" />    <Compile Include="Host\ServiceExec.cs" />    <Compile Include="UrlExtensions.cs" />    <Compile Include="Host\ActionContext.cs" />    <Compile Include="HttpRequestExtensions.cs" />    <Compile Include="Host\RestPath.cs" />    <Compile Include="Host\ServiceController.cs" />    <Compile Include="Host\ServiceMetadata.cs" />    <Compile Include="Host\RestHandler.cs" />    <Compile Include="HttpResponseExtensionsInternal.cs" />    <Compile Include="HttpHandlerFactory.cs" />    <Compile Include="FilterAttributeCache.cs" />    <Compile Include="Properties\AssemblyInfo.cs" />  </ItemGroup>  <ItemGroup>    <None Include="packages.config" />  </ItemGroup>  <ItemGroup>    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">      <Visible>False</Visible>      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>      <Install>false</Install>    </BootstrapperPackage>    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">      <Visible>False</Visible>      <ProductName>.NET Framework 3.5 SP1</ProductName>      <Install>true</Install>    </BootstrapperPackage>    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">      <Visible>False</Visible>      <ProductName>Windows Installer 3.1</ProductName>      <Install>true</Install>    </BootstrapperPackage>  </ItemGroup>  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.        Other similar extension points exist, see Microsoft.Common.targets.  <Target Name="BeforeBuild">  </Target>  <Target Name="AfterBuild">  </Target>  -->  <ItemGroup>    <ProjectReference Include="..\MediaBrowser.Common\MediaBrowser.Common.csproj">      <Project>{9142eefa-7570-41e1-bfcc-468bb571af2f}</Project>      <Name>MediaBrowser.Common</Name>    </ProjectReference>    <ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj">      <Project>{7eeeb4bb-f3e8-48fc-b4c5-70f0fff8329b}</Project>      <Name>MediaBrowser.Model</Name>    </ProjectReference>  </ItemGroup></Project>
 |