| 123456789101112131415161718192021222324252627282930313233343536373839 | <Project Sdk="MSBuild.Sdk.Extras">  <PropertyGroup>    <TargetFrameworks>net472;net6.0;net7.0;net6.0-windows10.0.19041</TargetFrameworks>    <NoWarn>$(NoWarn);CS0618</NoWarn>  </PropertyGroup>  <PropertyGroup Condition="$(TargetFramework.StartsWith('net6.0-windows')) or '$(TargetFramework)' == 'net472'">    <UseWPF>true</UseWPF>    <UseWindowsForms>true</UseWindowsForms>  </PropertyGroup>  <ItemGroup>    <Content Include="xunit.runner.json">      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>    </Content>  </ItemGroup>  <ItemGroup>    <!--    We need to be on a sufficiently recent version of the test framework, because we need this fix:      https://github.com/microsoft/testfx/pull/1071    Without this, the test runner fails to process Windows-version-specific TFMs for .NET 6.0.    Since the various libraries that require net6.0-windows all specify a minimum version (10.0.19041    for reasons not currently clear to me; idg10) this test project needs to specify at least as new    a version. If we write just net6.0-windows, that turns out to imply Windows 7.0, so it is not    considered compatible with a net6.0-windows10.0.19041 library.    Before that PR was merged, the test runner wouldn't work if the host specified a TFM with a    specific Windows version.-->    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />    <PackageReference Include="MSTest.TestAdapter" Version="3.0.2" />    <PackageReference Include="MSTest.TestFramework" Version="3.0.2" />    <PackageReference Include="xunit.assert" Version="2.4.2" />    <ProjectReference Include="..\..\src\System.Reactive\System.Reactive.csproj" />    <ProjectReference Include="..\..\src\System.Reactive.Observable.Aliases\System.Reactive.Observable.Aliases.csproj" />    <ProjectReference Include="..\..\src\Microsoft.Reactive.Testing\Microsoft.Reactive.Testing.csproj" />  </ItemGroup></Project>
 |