<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.0.11" />

Microsoft.Extensions.Hosting.HostingEnvironmentExtensions

public static class HostingEnvironmentExtensions
Extension methods for IHostingEnvironment.
public static bool IsDevelopment(this IHostingEnvironment hostingEnvironment)

Checks if the current hosting environment name is Development.

public static bool IsEnvironment(this IHostingEnvironment hostingEnvironment, string environmentName)

Compares the current hosting environment name against the specified value.

public static bool IsProduction(this IHostingEnvironment hostingEnvironment)

Checks if the current hosting environment name is Production.

public static bool IsStaging(this IHostingEnvironment hostingEnvironment)

Checks if the current hosting environment name is Staging.