David Lee

Results 8 comments of David Lee

For `WinSW-x64.exe` of release 2.12.0, The `className` in config should be set to `WinSW.Plugins.SharedDirectoryMapper,WinSW.Plugins` or `WinSW.Plugins.RunawayProcessKillerExtension,WinSW.Plugins`. This should really be documented somewhere. To derive the names yourself, use dotPeek or...

@moshfiqrony When the time arrives, we should be able to manually change `FUNCTIONS_WORKER_RUNTIME` in application settings to `dotnet-isolated`. It is the same thing as Stack settings under the hood. I'm...

Possible duplicate of https://github.com/nathom/streamrip/issues/552 Use TUN tunneling as a temporary workaround if supported by your proxying client.

Facing similar problem on Windows. As a workaround, I had to use proxy tunneling, which handles proxying transparent to applications. I believe this is introduced in the 2.0 major upgrade....

@micahl It was a custom virtualizing layout that I created, basically the same layout as the `StaggeredPanel` in Windows Community Toolkit. I also noticed there is a `PinterestLayout` in test...

@micahl Well, I think it's okay to just update the document and close this for now, but I still want this implemented in the future, as the alternative solution: -...

## Analysis The problem is at [ToolListGlobalOrToolPathCommand.cs:87](https://github.com/dotnet/sdk/blob/41b13414c4a35aac269719f7281cf74c9c9aae31/src/Cli/dotnet/commands/dotnet-tool/list/ToolListGlobalOrToolPathCommand.cs#L87), where `_createToolPackageStore(toolPath)` returns null, causing chaining calls to throw `NullReferenceException`. This is eventually traced back to [ToolInstallGlobalOrToolPathCommand.cs:123](https://github.com/dotnet/sdk/blob/41b13414c4a35aac269719f7281cf74c9c9aae31/src/Cli/dotnet/commands/dotnet-tool/install/ToolInstallGlobalOrToolPathCommand.cs#L123), where `ToolListGlobalOrToolPathCommand` constructor is called with...

Likely sharing the same underlying issue, but using the new C# 13 `\e` escape sequence (U+001B) in parameterized test cases will cause the relevant cases to never run. Testing for...