| 1234567891011121314151617181920212223242526 |
- <Project Sdk="MSBuild.Sdk.Extras">
- <PropertyGroup>
- <TargetFrameworks>netstandard2.0;net472;uap10.0.18362;net6.0</TargetFrameworks>
- <CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
- <Description>Reactive Extensions Testing Library containing interfaces and classes providing functionality to test applications and libraries built using Reactive Extensions.</Description>
- <AssemblyTitle>Microsoft.Reactive.Testing - Testing Helper Library</AssemblyTitle>
- <DefineConstants>$(DefineConstants);PLATFORM_DOTNET;XUNIT_VISIBILITY_INTERNAL</DefineConstants>
- <PackageTags>Rx;Reactive;Extensions;Observable;LINQ;Events</PackageTags>
- <Description>Reactive Extensions (Rx) for .NET - Testing Library</Description>
- <!-- NB: A lot of CA warnings are disabled because of the .cs files included from xunit.assert.source. -->
- <NoWarn>$(NoWarn);IDE0054;IDE0066;CA1305;CA1307;CA1032;CA1064;CA1822;CA1812;CA1820;CA1823</NoWarn>
- </PropertyGroup>
- <ItemGroup>
- <EmbeddedResource Include="Properties\*.xml" />
- <PackageReference Include="xunit.assert.source" Version="2.4.2" PrivateAssets="All" />
- <ProjectReference Include="..\System.Reactive\System.Reactive.csproj" />
- </ItemGroup>
- <ItemGroup>
- <!--
- Workaround for https://github.com/xunit/xunit/issues/2703
- -->
- <Compile Remove="$(NuGetPackageRoot)xunit.assert.source\**\contentFiles\cs\**\Asserts\Sdk\IAssertionException.cs" />
- </ItemGroup>
- </Project>
|