-
Notifications
You must be signed in to change notification settings - Fork 789
Expand file tree
/
Copy pathSystem.Linq.Async.Ref.csproj
More file actions
25 lines (21 loc) · 1.26 KB
/
System.Linq.Async.Ref.csproj
File metadata and controls
25 lines (21 loc) · 1.26 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
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<Description>LINQ Standard Query Operators used to express queries over asynchronous enumerable sequences.</Description>
<AssemblyTitle>System.Linq.Async</AssemblyTitle>
<Authors>Microsoft</Authors>
<TargetFrameworks>net461;netstandard2.0;netstandard2.1;netcoreapp3.1</TargetFrameworks>
<PackageTags>Enumerable;Asynchronous;LINQ</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Condition="'$(TargetFramework)' != 'netcoreapp3.1' and '$(TargetFramework)' != 'netstandard2.1' "
Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
<ProjectReference Include="..\..\System.Linq.Async.SourceGenerator\System.Linq.Async.SourceGenerator.csproj"
OutputItemType="Analyzer" ReferenceOutputAssembly="false" Private="false">
<!-- Remove all the properties set by ReferenceAssemblyProjectReference, because they cause build failures. -->
<GlobalPropertiesToRemove>ExtrasIsReferenceAssembly;AssemblyName;Version;AssemblyTitle</GlobalPropertiesToRemove>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\System.Linq.Async\**\*.cs" Exclude="..\..\System.Linq.Async\obj\**" />
</ItemGroup>
</Project>