AsyncQueryableEx.Generated.tt 900 B

12345678910111213141516
  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. <#@ assembly name="$(ProjectDir)\..\System.Interactive.Async\bin\$(Configuration)\net46\System.Interactive.Async.dll" #>
  8. <#@ output extension=".cs" #>
  9. <#
  10. var asyncEnumerableType = typeof(AsyncEnumerableEx);
  11. var className = "AsyncQueryableEx";
  12. var nullableParameterNames = new[] { "comparer" };
  13. var exclude = new string[0];
  14. #>
  15. <#@ include file="$(SolutionDir)\AsyncQueryableGenerator.t4" #>