QueryableEx.Generated.tt 663 B

1234567891011121314
  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.Interactive\bin\$(Configuration)\net45\System.Interactive.dll" #>
  6. <#@ output extension=".cs" #>
  7. <#
  8. var enumerableType = typeof(EnumerableEx);
  9. var className = "QueryableEx";
  10. var nullableParameterNames = new string[0] { }; // TODO: Add comparer
  11. var exclude = new[] { "ForEach" };
  12. #>
  13. <#@ include file="$(SolutionDir)\QueryableGenerator.t4" #>