-
Notifications
You must be signed in to change notification settings - Fork 789
Expand file tree
/
Copy pathBenchmarks.System.Interactive.csproj
More file actions
37 lines (29 loc) · 1.31 KB
/
Benchmarks.System.Interactive.csproj
File metadata and controls
37 lines (29 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Optimize>true</Optimize>
<Configurations>Current Sources;Ix.net 3.1.1;Ix.net 3.2</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Ix.net 3.1.1|AnyCPU'">
<DefineConstants>$(DefineConstants);IX3_1_1</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Ix.net 3.2|AnyCPU'">
<DefineConstants>$(DefineConstants);IX3_2</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Current Sources|AnyCPU'">
<DefineConstants>$(DefineConstants);CURRENT</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.2" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Ix.net 3.1.1|AnyCPU'">
<PackageReference Include="System.Interactive" Version="3.1.1" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)|$(Platform)'=='Ix.net 3.2|AnyCPU'">
<PackageReference Include="System.Interactive" Version="3.2.0-preview.635" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\System.Interactive.Tests\System.Interactive.Tests.csproj" />
</ItemGroup>
</Project>