-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathSuperLinq.Async.csproj
147 lines (129 loc) · 4.24 KB
/
SuperLinq.Async.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../../TargetFrameworks.props" />
<PropertyGroup>
<AssemblyName>SuperLinq.Async</AssemblyName>
<RootNamespace>SuperLinq.Async</RootNamespace>
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible>
</PropertyGroup>
<PropertyGroup Label="Nuget">
<Title>SuperLinq.Async</Title>
<Authors>SuperLinq Developers</Authors>
<PackageTags>linq;extensions;async</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryUrl>https://github.com/viceroypenguin/SuperLinq</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<Description>
This project enhances Async LINQ to Objects with the following methods:
- AggregateRight
- AssertCount
- AtLeast
- AtMost
- Choose
- CollectionEqual
- CompareCount
- ConcurrentMerge
- Consume
- CountBetween
- CountBy
- CountDown
- DenseRank
- DenseRankBy
- DistinctBy
- ElementAt
- EndsWith
- Exactly
- ExceptBy
- FallbackIfEmpty
- FillBackward
- FillForward
- Fold
- From
- Generate
- GroupAdjacent
- Index
- IndexBy
- Insert
- Interleave
- OrderBy
- Pad
- PadStart
- PartialSort
- PartialSortBy
- Random
- Rank
- RankBy
- RunLengthEncode
- ScanBy
- ScanRight
- Segment
- Sequence
- SkipUntil
- SortedMerge
- Split
- StartsWith
- TagFirstLast
- Take
- TakeEvery
- TakeUntil
- ThenBy
- Where
- Window
- WindowLeft
- WindowRight
- ZipLongest
- ZipMap
- ZipShortest
</Description>
<Description>$([System.Text.RegularExpressions.Regex]::Replace($(Description), `\s+`, ` `).Trim().Replace(` - `, `, `).Replace(`:,`, `:`))</Description>
<Copyright>
Portions © 2008 Jonathan Skeet.
Portions © 2009 Atif Aziz, Chris Ammerman, Konrad Rudolph.
Portions © 2010 Johannes Rudolph, Leopold Bushkin.
Portions © 2015 Felipe Sateler, “sholland”.
Portions © 2016 Andreas Gullberg Larsen, Leandro F. Vieira (leandromoh).
Portions © 2017 Jonas Nyrup (jnyrup).
Portions © 2022 Turning Code, LLC
Portions © 2022 Amichai Mantinband
Portions © Microsoft. All rights reserved.
</Copyright>
<Copyright>$([System.Text.RegularExpressions.Regex]::Replace($(Copyright), `\s+`, ` `).Trim())</Copyright>
</PropertyGroup>
<ItemGroup>
<None Include="readme.md" Pack="true" PackagePath="\" />
<AdditionalFiles Include="PublicAPI/$(TargetFramework)/PublicAPI.Shipped.txt" />
<AdditionalFiles Include="PublicAPI/$(TargetFramework)/PublicAPI.Unshipped.txt" />
</ItemGroup>
<ItemGroup>
<Using Include="SuperLinq.Exceptions" />
<Using Include="System.Runtime.CompilerServices" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNet.ReproducibleBuilds" PrivateAssets="All" />
<PackageReference Include="Microsoft.Bcl.HashCode" />
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" />
<PackageReference Include="MinVer" PrivateAssets="All" />
<PackageReference Include="System.Linq.Async" />
<PackageReference Include="System.Memory" />
<ProjectReference Include="..\SuperLinq\SuperLinq.csproj" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<DefineConstants>$(DefineConstants);NO_INDEX</DefineConstants>
</PropertyGroup>
<PropertyGroup Label="SourceGenerator">
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<ItemGroup Label="SourceGenerator">
<ProjectReference Include="..\..\Generators\SuperLinq.Async.Generator\SuperLinq.Async.Generator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<Compile Remove="$(CompilerGeneratedFilesOutputPath)/**/*.cs" />
<None Include="$(CompilerGeneratedFilesOutputPath)/SuperLinq.Async.Generator/**/*.cs" />
</ItemGroup>
<PropertyGroup Label="MinVer">
<MinVerAutoIncrement>minor</MinVerAutoIncrement>
<MinVerDefaultPreReleaseIdentifiers>preview.0</MinVerDefaultPreReleaseIdentifiers>
<MinVerTagPrefix>v</MinVerTagPrefix>
</PropertyGroup>
</Project>