1
0

Benchmarks.System.Interactive.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <IsPackable>false</IsPackable>
  6. <Optimize>true</Optimize>
  7. <Configurations>Current Sources;Ix.net 3.1.1;Ix.net 3.2</Configurations>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Ix.net 3.1.1|AnyCPU'">
  10. <DefineConstants>$(DefineConstants);IX3_1_1</DefineConstants>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Ix.net 3.2|AnyCPU'">
  13. <DefineConstants>$(DefineConstants);IX3_2</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.15.4" />
  20. </ItemGroup>
  21. <ItemGroup Condition="'$(Configuration)|$(Platform)'=='Ix.net 3.1.1|AnyCPU'">
  22. <PackageReference Include="System.Interactive" Version="3.1.1" />
  23. </ItemGroup>
  24. <ItemGroup Condition="'$(Configuration)|$(Platform)'=='Ix.net 3.2|AnyCPU'">
  25. <PackageReference Include="System.Interactive" Version="3.2.0-preview.635" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\System.Interactive.Tests\System.Interactive.Tests.csproj" />
  29. </ItemGroup>
  30. </Project>