File: Program.cs
Web Access
Project: src\tests\TestingAppHost1\TestingAppHost1.MyWorker\TestingAppHost1.MyWorker.csproj (TestingAppHost1.MyWorker)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.Extensions.Hosting;
 
var builder = Host.CreateApplicationBuilder(args);
builder.AddServiceDefaults();
builder.Build().Run();