Benchmarks.System.Reactive.csproj 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net46</TargetFramework>
  5. <Configurations>Current Sources;Rx.net 3.1.1;Rx.net 4.0</Configurations>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Rx.net 3.1.1|AnyCPU'">
  8. <DefineConstants>$(DefineConstants);RX3_1_1</DefineConstants>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Rx.net 4.0|AnyCPU'">
  11. <DefineConstants>$(DefineConstants);RX4_0</DefineConstants>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Current Sources|AnyCPU'">
  14. <DefineConstants>$(DefineConstants);CURRENT</DefineConstants>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <PackageReference Include="BenchmarkDotNet" Version="0.10.14" />
  18. </ItemGroup>
  19. <ItemGroup Condition="'$(Configuration)|$(Platform)'=='Rx.net 3.1.1|AnyCPU'">
  20. <PackageReference Include="System.Reactive" Version="3.1.1" />
  21. </ItemGroup>
  22. <ItemGroup Condition="'$(Configuration)|$(Platform)'=='Rx.net 4.0|AnyCPU'">
  23. <PackageReference Include="System.Reactive" Version="4.0.0" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\..\tests\Tests.System.Reactive\Tests.System.Reactive.csproj" />
  27. </ItemGroup>
  28. </Project>