| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 | <?xml version="1.0" encoding="utf-8"?><Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">  <PropertyGroup>    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>    <ProductVersion>8.0.50727</ProductVersion>    <SchemaVersion>2.0</SchemaVersion>    <ProjectGuid>{D4496C0B-9EED-4776-AD18-049493B8C737}</ProjectGuid>    <OutputType>Library</OutputType>    <AppDesignerFolder>Properties</AppDesignerFolder>    <RootNamespace>FastReport.Service</RootNamespace>    <AssemblyName>FastReport.Service</AssemblyName>    <SignAssembly>true</SignAssembly>    <AssemblyOriginatorKeyFile>..\FastReport.Net.snk</AssemblyOriginatorKeyFile>    <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>    <StartArguments>/client:"WcfTestClient.exe"</StartArguments>    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>    <TargetFrameworkProfile>    </TargetFrameworkProfile>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">    <DebugSymbols>true</DebugSymbols>    <DebugType>full</DebugType>    <Optimize>false</Optimize>    <OutputPath>bin\Debug\</OutputPath>    <DefineConstants>DOTNET_4;DEBUG;TRACE</DefineConstants>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">    <DebugType>pdbonly</DebugType>    <Optimize>true</Optimize>    <OutputPath>bin\Release\</OutputPath>    <DefineConstants>DOTNET_4;TRACE</DefineConstants>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>  </PropertyGroup>  <ItemGroup>    <Reference Include="FastReport">      <HintPath>..\FastReport\bin\Debug\FastReport.dll</HintPath>    </Reference>    <Reference Include="FastReport.Bars">      <HintPath>..\FastReport.Bars\bin\Debug\FastReport.Bars.dll</HintPath>    </Reference>    <Reference Include="Microsoft.CSharp" />    <Reference Include="System" />    <Reference Include="System.configuration" />    <Reference Include="System.Core" />    <Reference Include="System.Data" />    <Reference Include="System.Drawing" />    <Reference Include="System.Net" />    <Reference Include="System.Runtime.Serialization" />    <Reference Include="System.ServiceModel" />    <Reference Include="System.ServiceModel.Web" />    <Reference Include="System.Web" />    <Reference Include="System.Web.Extensions" />    <Reference Include="System.Xml" />    <Reference Include="System.Xml.Linq" />  </ItemGroup>  <ItemGroup>    <Compile Include="IReportService.cs" />    <Compile Include="MultipartParser.cs" />    <Compile Include="Properties\AssemblyInfo.cs" />    <Compile Include="ReportExport.cs" />    <Compile Include="ReportService.cs" />    <Compile Include="ReportServiceGears.cs" />    <Compile Include="ReportServiceList.cs" />  </ItemGroup>  <ItemGroup>    <None Include="App.config" />  </ItemGroup>  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />  <ProjectExtensions>    <VisualStudio>      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">        <WcfProjectProperties>          <AutoStart>True</AutoStart>        </WcfProjectProperties>      </FlavorProperties>    </VisualStudio>  </ProjectExtensions>  <!-- 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>  --></Project>
 |