1
0

AsyncQueryable.Generated.tt 938 B

123456789101112131415
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. <#@ template debug="false" hostspecific="false" language="C#" #>
  5. <#@ assembly name="$(ProjectDir)\..\System.Linq.Async\bin\$(Configuration)\net46\System.Threading.Tasks.Extensions.dll" #>
  6. <#@ assembly name="$(ProjectDir)\..\System.Linq.Async\bin\$(Configuration)\net46\System.Linq.Async.dll" #>
  7. <#@ output extension=".cs" #>
  8. <#
  9. var asyncEnumerableType = typeof(AsyncEnumerable);
  10. var className = "AsyncQueryable";
  11. var nullableParameterNames = new[] { "comparer" };
  12. var exclude = new[] { "ForEachAsync", "ForEachAwaitAsync", "ForEachAwaitWithCancellationAsync", "ToEnumerable", "ToAsyncEnumerable", "ToObservable", "AsAsyncEnumerable", "WithCancellation" };
  13. #>
  14. <#@ include file="$(SolutionDir)\AsyncQueryableGenerator.t4" #>