Microsoft.Reactive.Testing.csproj 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. </PropertyGroup>
  30. <PropertyGroup Condition="'$(TargetFramework)' == 'net45'">
  31. <DefineConstants>$(DefineConstants);NO_EVENTARGS_CONSTRAINT;HAS_WINRT;PREFER_ASYNC;USE_TIMER_SELF_ROOT</DefineConstants>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Compile Include="**\*.cs" />
  35. <EmbeddedResource Include="**\*.resx" />
  36. <EmbeddedResource Include="Properties\*.xml" />
  37. <PackageReference Include="GitVersionTask" Version="4.0.0-pullrequest1119-1208">
  38. <PrivateAssets>All</PrivateAssets>
  39. </PackageReference>
  40. <!-- https://github.com/NuGet/Home/issues/4143
  41. <PackageReference Include="xunit.assert.source" Version="2.2.0-beta4-build3444" /> -->
  42. <PackageReference Include="xunit.assert" Version="2.2.0-beta4-build3465" />
  43. <ProjectReference Include="..\System.Reactive\System.Reactive.csproj" />
  44. </ItemGroup>
  45. </Project>