17 lines
399 B
C#
17 lines
399 B
C#
|
using Microsoft.AspNetCore;
|
|||
|
using Microsoft.AspNetCore.Hosting;
|
|||
|
|
|||
|
namespace HttpClientFactorySample
|
|||
|
{
|
|||
|
public class Program
|
|||
|
{
|
|||
|
public static void Main(string[] args)
|
|||
|
{
|
|||
|
CreateWebHostBuilder(args).Build().Run();
|
|||
|
}
|
|||
|
|
|||
|
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
|
|||
|
WebHost.CreateDefaultBuilder<Startup>(args);
|
|||
|
}
|
|||
|
}
|