17 lines
380 B
C#
17 lines
380 B
C#
using Microsoft.AspNet.Builder;
|
|
using Microsoft.AspNet.FileSystems;
|
|
using Microsoft.AspNet.StaticFiles;
|
|
|
|
namespace StaticFilesSample
|
|
{
|
|
public class Startup
|
|
{
|
|
public void Configure(IApplicationBuilder app)
|
|
{
|
|
app.UseFileServer(new FileServerOptions()
|
|
{
|
|
EnableDirectoryBrowsing = true,
|
|
});
|
|
}
|
|
}
|
|
} |