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

Microsoft.Extensions.Hosting.HostEnvironmentEnvExtensions

public static class HostEnvironmentEnvExtensions
Extension methods for IHostEnvironment.
public static bool IsDevelopment(this IHostEnvironment hostEnvironment)

Checks if the current host environment name is Development.

public static bool IsEnvironment(this IHostEnvironment hostEnvironment, string environmentName)

Compares the current host environment name against the specified value.

public static bool IsProduction(this IHostEnvironment hostEnvironment)

Checks if the current host environment name is Production.

public static bool IsStaging(this IHostEnvironment hostEnvironment)

Checks if the current host environment name is Staging.