File: Internal\ServiceCollectionExtensions.cs | Web Access |
Project: src\src\Hosting\Hosting\src\Microsoft.AspNetCore.Hosting.csproj (Microsoft.AspNetCore.Hosting) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Extensions.DependencyInjection; namespace Microsoft.AspNetCore.Hosting; internal static class ServiceCollectionExtensions { public static IServiceCollection Clone(this IServiceCollection serviceCollection) { IServiceCollection clone = new ServiceCollection(); foreach (var service in serviceCollection) { clone.Add(service); } return clone; } } |