// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.FileProviders;
namespace Microsoft.AspNetCore.Grpc.Swagger.Tests.Infrastructure;
internal class TestWebHostEnvironment : IWebHostEnvironment
{
public IFileProvider WebRootFileProvider { get; set; }
public string WebRootPath { get; set; }
public string ApplicationName { get; set; }
public IFileProvider ContentRootFileProvider { get; set; }
public string ContentRootPath { get; set; }
public string EnvironmentName { get; set; }
}
|