Patrick Ritchie
Patrick Ritchie
Thanks for the information! Glad to hear you have a workaround and I'll see if there is a good way to toggle how the formatters are loaded.
It looks like using the below arguments with the DotNet CLI `publish` command seems to work: ``` dotnet publish -c:Release -f:net8.0 -r:win-x64 -p:PublishSingleFile=true -p:IncludeAllContentForSelfExtract=true --self-contained false ``` The **IncludeAllContentForSelfExtract** option...
I'm looking at whether or not to pass a logger as you have in this or to just raise an event. I have previously just raised an event for logging...