File: Util\AsyncEnumerableExtras.cs
Web Access
Project: src\src\runtime\src\tools\hotreload-delta-gen\Microsoft.DotNet.HotReload.Utils.Generator\Microsoft.DotNet.HotReload.Utils.Generator.csproj (Microsoft.DotNet.HotReload.Utils.Generator)
using System.Collections.Generic;

namespace Microsoft.DotNet.HotReload.Utils.Generator.Util;
public static class AsyncEnumerableExtras {
    public async static IAsyncEnumerable<T> Empty<T> () {
        await System.Threading.Tasks.Task.CompletedTask;
        yield break;
    }
}