AspNetCore.Docs/aspnetcore/release-notes/sample/ProgramJsonLog.cs

29 lines
750 B
C#
Raw Normal View History

What's new in ASP.NET Core 5 (#20140) * What's new in ASP.NET Core 5 * What's new in ASP.NET Core 5 * Work * Work * Work * work * work * work * work * work * work * work * work * GuardRex feedback * work * work * work * work * work * Apply suggestions from code review Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com> * react to feedback * Apply suggestions from code review Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com> Co-authored-by: Daniel Roth <daroth@microsoft.com> * Apply suggestions from code review Co-authored-by: Daniel Roth <daroth@microsoft.com> * Apply suggestions from code review Co-authored-by: Stephen Halter <halter73@gmail.com> * react to feedback * react to feedback * React to feedback * Nit ..... *almost done* lol * A few final nits ... *I'm done!* * Update aspnetcore/release-notes/aspnetcore-5.0.md Co-authored-by: Brennan <brecon@microsoft.com> * React to feedback * Update * Apply suggestions from code review Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com> * Protected Browser Support API updates * Update aspnetcore/release-notes/aspnetcore-5.0.md Co-authored-by: Daniel Roth <daroth@microsoft.com> * Apply suggestions from code review Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Stephen Halter <halter73@gmail.com> * react to feedback * react to feedback Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com> Co-authored-by: Daniel Roth <daroth@microsoft.com> Co-authored-by: Stephen Halter <halter73@gmail.com> Co-authored-by: Luke Latham <llatham@aquent.com> Co-authored-by: Brennan <brecon@microsoft.com>
2020-10-30 08:20:42 +08:00
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System.Text.Json;
using WebJsonLog;
public class Program
{
public static void Main(string[] args)
{
CreateHostBuilder(args).Build().Run();
}
#region snippet
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureLogging(logging =>
{
logging.AddJsonConsole(options =>
{
options.JsonWriterOptions = new JsonWriterOptions()
{ Indented = true };
});
})
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
});
#endregion
}