1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net46</TargetFramework>
- <Optimize>true</Optimize>
- <IsPackable>false</IsPackable>
- <Configurations>Current Sources;Rx.net 3.1.1;Rx.net 4.0</Configurations>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Rx.net 3.1.1|AnyCPU'">
- <DefineConstants>$(DefineConstants);RX3_1_1</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Rx.net 4.0|AnyCPU'">
- <DefineConstants>$(DefineConstants);RX4_0</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Current Sources|AnyCPU'">
- <DefineConstants>$(DefineConstants);CURRENT</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="BenchmarkDotNet" Version="0.10.14" />
- <PackageReference Include="WindowsBase" Version="4.6.1055" />
- </ItemGroup>
- <ItemGroup Condition="'$(Configuration)|$(Platform)'=='Rx.net 3.1.1|AnyCPU'">
- <PackageReference Include="System.Reactive" Version="3.1.1" />
- </ItemGroup>
- <ItemGroup Condition="'$(Configuration)|$(Platform)'=='Rx.net 4.0|AnyCPU'">
- <PackageReference Include="System.Reactive" Version="4.0.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\tests\Tests.System.Reactive\Tests.System.Reactive.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="System.Windows.Forms" />
- </ItemGroup>
- </Project>
|