Benchmarks.System.Reactive.csproj 1.5 KB

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