Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions docs/release-notes/.VisualStudio/17.11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### Fixed

* Make tooltips work in file with no solution. ([PR #17054](https://github.com/dotnet/fsharp/pull/17054))
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ type internal FSharpAsyncQuickInfoSource

[
Path.GetRelativePath(projectDir, filePath)
Path.GetRelativePath(solutionDir, filePath)
if not (isNull solutionDir) then
Path.GetRelativePath(solutionDir, filePath)
]
|> List.minBy String.length

Expand Down