-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathSuperLinq.Async.Test.csproj
50 lines (41 loc) · 1.86 KB
/
SuperLinq.Async.Test.csproj
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
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../../TargetFrameworks.props" />
<PropertyGroup>
<AssemblyTitle>SuperLinq.Async.Test</AssemblyTitle>
<AssemblyName>SuperLinq.Async.Test</AssemblyName>
<RootNamespace>Test.Async</RootNamespace>
<TargetFrameworks>net47;$(TargetFrameworks)</TargetFrameworks>
<IsPackable>false</IsPackable>
<AnalysisLevel>latest-recommended</AnalysisLevel>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Source\SuperLinq\SuperLinq.csproj" />
<ProjectReference Include="..\..\Source\SuperLinq.Async\SuperLinq.Async.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\SuperLinq.Test\BreakingAction.cs" Link="BreakingAction.cs" />
<Compile Include="..\SuperLinq.Test\BreakingFunc.cs" Link="BreakingFunc.cs" />
<Compile Include="..\SuperLinq.Test\EqualityComparer.cs" Link="EqualityComparer.cs" />
<Compile Include="..\SuperLinq.Test\FuncModule.cs" Link="FuncModule.cs" />
<Compile Include="..\SuperLinq.Test\TestException.cs" Link="TestException.cs" />
</ItemGroup>
<ItemGroup>
<Using Include="SuperLinq" />
<Using Include="SuperLinq.Async" />
<Using Include="Xunit" />
<Using Include="Xunit.Assert" Alias="Assert" />
<Using Include="Test.FuncModule" Static="true" />
<Using Include="Test.Async.TestExtensions" Static="true" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net47'">
<DefineConstants>$(DefineConstants);NO_INDEX</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" PrivateAssets="All" />
<PackageReference Include="coverlet.msbuild" PrivateAssets="All" />
<PackageReference Include="GitHubActionsTestLogger" PrivateAssets="All" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.visualstudio" PrivateAssets="All" />
</ItemGroup>
</Project>