Microsoft.Reactive.Testing.csproj 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
  2. <PropertyGroup>
  3. <TargetFrameworks>net45;netstandard1.3</TargetFrameworks>
  4. <CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
  5. <DefaultLanguage>en-US</DefaultLanguage>
  6. <MinClientVersion>2.12</MinClientVersion>
  7. <Description>Reactive Extensions Testing Library containing interfaces and classes providing functionality to test applications and libraries built using Reactive Extensions.</Description>
  8. <Copyright>Copyright (c) .NET Foundation and Contributors.</Copyright>
  9. <AssemblyTitle>Microsoft.Reactive.Testing - Testing Helper Library</AssemblyTitle>
  10. <Authors>.NET Foundation and Contributors</Authors>
  11. <DefineConstants>$(DefineConstants);PLATFORM_DOTNET;XUNIT_VISIBILITY_INTERNAL</DefineConstants>
  12. <NoWarn>$(NoWarn);CS1591</NoWarn>
  13. <GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
  14. <Product>Microsoft.Reactive.Testing ($(TargetFramework))</Product>
  15. <AssemblyOriginatorKeyFile>../ReactiveX.snk</AssemblyOriginatorKeyFile>
  16. <SignAssembly>true</SignAssembly>
  17. <PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
  18. <PackageTags>Rx;Reactive;Extensions;Observable;LINQ;Events</PackageTags>
  19. <PackageIconUrl>http://go.microsoft.com/fwlink/?LinkId=261274</PackageIconUrl>
  20. <PackageProjectUrl>http://go.microsoft.com/fwlink/?LinkId=261273</PackageProjectUrl>
  21. <PackageLicenseUrl>http://go.microsoft.com/fwlink/?LinkID=261272</PackageLicenseUrl>
  22. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  23. <IncludeSymbols>true</IncludeSymbols>
  24. <UseFullSemVerForNuGet>true</UseFullSemVerForNuGet>
  25. <Description>Reactive Extensions (Rx) for .NET - Testing Library</Description>
  26. </PropertyGroup>
  27. <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
  28. <DefineConstants>$(DefineConstants);NO_EVENTARGS_CONSTRAINT;HAS_WINRT;PREFER_ASYNC;USE_TIMER_SELF_ROOT;HAS_TPL46;NO_REMOTING;NO_SERIALIZABLE;CRIPPLED_REFLECTION</DefineConstants>
  29. <AssemblyVersion>4.0.3000.0</AssemblyVersion>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="'$(TargetFramework)' == 'net45'">
  32. <DefineConstants>$(DefineConstants);NO_EVENTARGS_CONSTRAINT;HAS_WINRT;PREFER_ASYNC;USE_TIMER_SELF_ROOT</DefineConstants>
  33. <AssemblyVersion>4.0.1000.0</AssemblyVersion>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Compile Include="**\*.cs" />
  37. <EmbeddedResource Include="**\*.resx" />
  38. <EmbeddedResource Include="Properties\*.xml" />
  39. <PackageReference Include="GitVersionTask" Version="4.0.0-pullrequest1119-1208">
  40. <PrivateAssets>All</PrivateAssets>
  41. </PackageReference>
  42. <!-- https://github.com/NuGet/Home/issues/4143
  43. <PackageReference Include="xunit.assert.source" Version="2.2.0-beta4-build3444" /> -->
  44. <PackageReference Include="xunit.assert" Version="2.2.0-beta4-build3444" />
  45. <ProjectReference Include="..\System.Reactive\System.Reactive.csproj" />
  46. </ItemGroup>
  47. </Project>