The findPath command now returns a IDotnetAcquireResult object instead of a string. The string containing the actual path is in the dotnetPath property. With the current code, the result was an "unsupported server configuration" error when starting the LSP client. This PR fixes the error.
See breaking change in vscode-dotnet-runtime: https://github.com/dotnet/vscode-dotnet-runtime/blob/814208c72c9ecbfdc0d979c486eddfd3915e0b3e/vscode-dotnet-runtime-extension/CHANGELOG.md?plain=1#L22
The
findPath
command now returns aIDotnetAcquireResult
object instead of a string. The string containing the actual path is in thedotnetPath
property. With the current code, the result was an "unsupported server configuration" error when starting the LSP client. This PR fixes the error.