12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <!-- See NetCore31TestReadme.txt for why we still use netcoreapp3.1 -->
- <TargetFrameworks>net48;net8.0;net6.0;netcoreapp3.1</TargetFrameworks>
- <!--
- CA1510: Use ArgumentNullException.ThrowIfNull - not available on .NET 4.8
- CA1822: Make member static. Not necessary for test code.
- CA1861: Extract constant arrays to 'static readonly' fields. With these tests we generally prioritize readability over performance.
- -->
- <NoWarn>$(NoWarn);CS0618;CS8603;CS8625;CA1510;CA1822;CA1861</NoWarn>
- </PropertyGroup>
- <ItemGroup>
- <Content Include="xunit.runner.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\System.Interactive.Async.Providers\System.Interactive.Async.Providers.csproj" />
- <ProjectReference Include="..\System.Linq.Async\System.Linq.Async.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
- <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
- <PackageReference Include="FluentAssertions" Version="6.4.0" />
- <PackageReference Include="xunit" Version="2.4.1" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="..\System.Linq.Async.Tests\ValueTaskHelpers.cs" />
- </ItemGroup>
- <ItemGroup>
- <None Update="AsyncQueryableExTests.Generated.tt">
- <LastGenOutput>AsyncQueryableExTests.Generated.cs</LastGenOutput>
- <Generator>TextTemplatingFileGenerator</Generator>
- </None>
- <None Update="AsyncQueryableTests.Generated.tt" Generator="TextTemplatingFileGenerator" LastGenOutput="AsyncQueryableTests.Generated.cs" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="AsyncQueryableExTests.Generated.cs">
- <DesignTime>True</DesignTime>
- <AutoGen>True</AutoGen>
- <DependentUpon>AsyncQueryableExTests.Generated.tt</DependentUpon>
- </Compile>
- <Compile Update="AsyncQueryableTests.Generated.cs">
- <DesignTime>True</DesignTime>
- <AutoGen>True</AutoGen>
- <DependentUpon>AsyncQueryableTests.Generated.tt</DependentUpon>
- </Compile>
- </ItemGroup>
- </Project>
|