| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | <Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">  <PropertyGroup>    <TargetFrameworks>net46;netcoreapp1.0</TargetFrameworks>    <AssemblyOriginatorKeyFile>../ReactiveX.snk</AssemblyOriginatorKeyFile>    <SignAssembly>true</SignAssembly>    <NoWarn>$(NoWarn);CS0618</NoWarn>  </PropertyGroup>  <PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp1.0'">    <DefineConstants>$(DefineConstants);NO_EVENTARGS_CONSTRAINT;HAS_WINRT;PREFER_ASYNC;USE_TIMER_SELF_ROOT;HAS_TPL46;NO_REMOTING;NO_SERIALIZABLE;CRIPPLED_REFLECTION</DefineConstants>    <OutputType>Exe</OutputType>  </PropertyGroup>  <PropertyGroup Condition="'$(TargetFramework)' == 'net45'">    <DefineConstants>$(DefineConstants);NO_EVENTARGS_CONSTRAINT;HAS_WINRT;PREFER_ASYNC;USE_TIMER_SELF_ROOT;DESKTOPCLR;HAS_WINFORMS</DefineConstants>  </PropertyGroup>  <PropertyGroup Condition="'$(TargetFramework)' == 'net46'">    <DefineConstants>$(DefineConstants);NO_EVENTARGS_CONSTRAINT;HAS_WINRT;PREFER_ASYNC;USE_TIMER_SELF_ROOT;HAS_TPL46;DESKTOPCLR;HAS_WINFORMS;HAS_DISPATCHER</DefineConstants>  </PropertyGroup>  <ItemGroup>    <Compile Include="**\*.cs" />    <Content Include="xunit.runner.json">      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>    </Content>    <EmbeddedResource Include="**\*.resx" />  </ItemGroup>  <ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp1.0'">    <PackageReference Include="Microsoft.NETCore.App" Version="1.1.0" />  </ItemGroup>  <ItemGroup Condition=" '$(TargetFramework)' == 'net45' or '$(TargetFramework)' == 'net46'">    <Reference Include="System" />    <Reference Include="Microsoft.CSharp" />    <Reference Include="System.Windows" />    <Reference Include="System.Windows.Forms" />    <Reference Include="WindowsBase" />  </ItemGroup>  <ItemGroup>    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-preview-20161123-03" />    <PackageReference Include="xunit" Version="2.2.0-beta4-build3444" />    <PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta4-build1194" />    <ProjectReference Include="..\System.Reactive\System.Reactive.csproj" />    <ProjectReference Include="..\System.Reactive.Observable.Aliases\System.Reactive.Observable.Aliases.csproj" />    <ProjectReference Include="..\Microsoft.Reactive.Testing\Microsoft.Reactive.Testing.csproj" />  </ItemGroup></Project>
 |