Files
mapo-core/MP-TAB/MP-TAB.Client/Program.cs
T
2023-09-28 15:46:59 +02:00

13 lines
326 B
C#

using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
// aggiunto x gestione chiamate WebAPI
builder.Services.AddScoped(sp =>
new HttpClient
{
BaseAddress = new Uri(builder.HostEnvironment.BaseAddress)
});
await builder.Build().RunAsync();