-
-
Couldn't load subscription status.
- Fork 44
Open
Description
If I have a Console.WriteLine or Logger.LogInformation in the BackgroundWorker.Main method then the build will always fail.
For instance, this will work
[BackgroundWorkerMain]
public override void Main()
{
//Logger.LogInformation("Initializing extension");
WebExtensions.Runtime.OnInstalled.AddListener(OnInstalled);
} This will fail
[BackgroundWorkerMain]
public override void Main()
{
Logger.LogInformation("Initializing extension");
WebExtensions.Runtime.OnInstalled.AddListener(OnInstalled);
} Metadata
Metadata
Assignees
Labels
No labels