123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net472</TargetFramework>
- <Optimize>true</Optimize>
- <IsPackable>false</IsPackable>
- <Configurations>Current Sources;Rx.net 3.1.1;Rx.net 4.0</Configurations>
- </PropertyGroup>
- <!--
- Test projects are not designed for public consumption so the analysis rules mostly produce
- false positives.
- -->
- <PropertyGroup>
- <AnalysisLevelNaming>7.0-none</AnalysisLevelNaming>
- <AnalysisLevelPerformance>7.0-none</AnalysisLevelPerformance>
- <NoWarn>$(NoWarn);IDE1006</NoWarn>
- </PropertyGroup>
- <ItemGroup>
- <GlobalAnalyzerConfigFiles Remove="$(MSBuildThisFileDirectory)..\..\analyzers.globalconfig" />
- </ItemGroup>
- <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.13.5" />
- <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>
|