var options = new WebApplicationOptions
{
Args = args,
ApplicationName = "MyApp",
ContentRootPath = Path.Combine(Directory.GetCurrentDirectory(), "contents"),
EnvironmentName = "staging"
};
var options = new WebApplicationOptions
{
Args = args,
ApplicationName = "MyApp",
ContentRootPath = Path.Combine(Directory.GetCurrentDirectory(), "contents"),
WebRootPath = Path.Combine(Directory.GetCurrentDirectory(), "contents","wwwroot"),
EnvironmentName = "staging"
};