| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 | <?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)' == '' ">x86</Platform>    <ProductVersion>8.0.30703</ProductVersion>    <SchemaVersion>2.0</SchemaVersion>    <ProjectGuid>{CCCD13E5-63B9-43C7-93B7-71E6709CFDEC}</ProjectGuid>    <OutputType>Exe</OutputType>    <AppDesignerFolder>Properties</AppDesignerFolder>    <RootNamespace>Net40ConsoleApplication</RootNamespace>    <AssemblyName>Net40ConsoleApplication</AssemblyName>    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>    <TargetFrameworkProfile>Client</TargetFrameworkProfile>    <FileAlignment>512</FileAlignment>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">    <PlatformTarget>x86</PlatformTarget>    <DebugSymbols>true</DebugSymbols>    <DebugType>full</DebugType>    <Optimize>false</Optimize>    <OutputPath>bin\Debug\</OutputPath>    <DefineConstants>DEBUG;TRACE</DefineConstants>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">    <PlatformTarget>x86</PlatformTarget>    <DebugType>pdbonly</DebugType>    <Optimize>true</Optimize>    <OutputPath>bin\Release\</OutputPath>    <DefineConstants>TRACE</DefineConstants>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>  </PropertyGroup>  <ItemGroup>    <Reference Include="System" />    <Reference Include="System.Core" />    <Reference Include="System.Reactive.Core">      <HintPath>..\..\..\Source\bin\Debug40\System.Reactive.Core.dll</HintPath>    </Reference>    <Reference Include="System.Reactive.Debugger">      <HintPath>..\..\..\Source\bin\Debug40\System.Reactive.Debugger.dll</HintPath>    </Reference>    <Reference Include="System.Reactive.Experimental">      <HintPath>..\..\..\Source\bin\Debug40\System.Reactive.Experimental.dll</HintPath>    </Reference>    <Reference Include="System.Reactive.Interfaces">      <HintPath>..\..\..\Source\bin\Debug40\System.Reactive.Interfaces.dll</HintPath>    </Reference>    <Reference Include="System.Reactive.Linq">      <HintPath>..\..\..\Source\bin\Debug40\System.Reactive.Linq.dll</HintPath>    </Reference>    <Reference Include="System.Reactive.PlatformServices">      <HintPath>..\..\..\Source\bin\Debug40\System.Reactive.PlatformServices.dll</HintPath>    </Reference>    <Reference Include="System.Reactive.Providers">      <HintPath>..\..\..\Source\bin\Debug40\System.Reactive.Providers.dll</HintPath>    </Reference>    <Reference Include="System.Reactive.Runtime.Remoting">      <HintPath>..\..\..\Source\bin\Debug40\System.Reactive.Runtime.Remoting.dll</HintPath>    </Reference>    <Reference Include="System.Reactive.Windows.Forms">      <HintPath>..\..\..\Source\bin\Debug40\System.Reactive.Windows.Forms.dll</HintPath>    </Reference>    <Reference Include="System.Reactive.Windows.Threading">      <HintPath>..\..\..\Source\bin\Debug40\System.Reactive.Windows.Threading.dll</HintPath>    </Reference>    <Reference Include="System.Windows.Forms" />    <Reference Include="System.Xml.Linq" />    <Reference Include="System.Data.DataSetExtensions" />    <Reference Include="Microsoft.CSharp" />    <Reference Include="System.Data" />    <Reference Include="System.Xml" />    <Reference Include="WindowsBase" />  </ItemGroup>  <ItemGroup>    <Compile Include="Program.cs" />    <Compile Include="Properties\AssemblyInfo.cs" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\PortableClassLibrary\PortableClassLibrary.csproj">      <Project>{24A63BF3-D9ED-4F4D-B576-E7A73AE00420}</Project>      <Name>PortableClassLibrary</Name>    </ProjectReference>  </ItemGroup>  <Import Project="$(MSBuildToolsPath)\Microsoft.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>  --></Project>
 |