4 questions
1
vote
1
answer
147
views
Does Serilog support WinUI 3.0 Apps?
I am new to WinUI development, I created a new simple WinUI 3.0 app (using Viusal Studio template Blank App, Packaged (WinUI 3 in desktop)
I also installed the following
$ dotnet add package Serilog
$ ...
1
vote
3
answers
1k
views
Serilog.Sinks.Console formatter configure is not work
I configure the output format in appsettings.json, but it does not work:
{
"Serilog": {
"WriteTo": [
{
"Name": "Console",
"Args&...