Если структура нашей области выглядит следующим образом:
![enter image description here](https://i.stack.imgur.com/kgIIV.png)
Вам необходимо скопировать эти коды в раздел «Настройка» при запуске в разделе app.UseStaticFiles()
app.UseStaticFiles(new StaticFileOptions()
{
FileProvider = new
PhysicalFileProvider(Path.Combine(Directory.GetCurrentDirectory(),
"Areas\\Foo\\Content")),
RequestPath = new PathString("/Foo/Content")
});
и ссылку на файл, как показано ниже:
<link rel="stylesheet" href="/Foo/Content/bootstrap.min.css" />