Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make SDK build of OmniSharp the default #5176

Merged
merged 15 commits into from
May 19, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix null exception
  • Loading branch information
JoeRobich committed May 17, 2022
commit c6e88e7cb7b0c112aca0742c0ca9c574de6b7af1
2 changes: 1 addition & 1 deletion src/observers/OmnisharpLoggerObserver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class OmnisharpLoggerObserver extends BaseLoggerObserver {
this.logger.append(`OmniSharp server started`);
if (event.hostVersion) {
this.logger.append(` with ${event.hostIsMono ? 'Mono' : '.NET'} ${event.hostVersion}`);
if (event.hostPath.length > 0) {
if (event.hostPath?.length > 0) {
this.logger.append(` (${event.hostPath})`);
}
}
Expand Down