File: Program.cs | Web Access |
Project: src\playground\yarp\Yarp.Frontend\Yarp.Frontend.csproj (Yarp.Frontend) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. var builder = WebApplication.CreateBuilder(args); // Add services to the container. var app = builder.Build(); app.UseFileServer(); app.Run(); |