Benchmarks.System.Reactive.csproj 1.3 KB

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