File: Program.cs | Web Access |
Project: src\src\Shared\test\testassets\CreateHostBuilderPatternTestSite\CreateHostBuilderPatternTestSite.csproj (CreateHostBuilderPatternTestSite) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using MockHostTypes; namespace CreateHostBuilderPatternTestSite; public class Program { public static void Main(string[] args) { var webHost = CreateHostBuilder(args).Build(); } // Do not change the signature of this method. It's used for tests. private static HostBuilder CreateHostBuilder(string[] args) => new HostBuilder(); } |