We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7569771 + 82476dd commit 4870bbeCopy full SHA for 4870bbe
CHANGELOG.md
@@ -1,6 +1,6 @@
1
# Changelog
2
3
-## [Unreleased]
+## 0.5.1 - 2023-12-06
4
5
### Fixed
6
* Handle types without a FullName more gracefully in the EmptyStringAnalyzer. [#48](https://github.com/ionide/ionide-analyzers/pull/48)
src/Ionide.Analyzers/Suggestion/HandleOptionGracefullyAnalyzer.fs
@@ -19,7 +19,7 @@ let optionGetAnalyzer (ctx: CliContext) =
19
let fullyQualifiedCall =
20
let fullName =
21
mfv.DeclaringEntity
22
- |> Option.map (fun e -> e.TryFullName)
+ |> Option.map (fun e -> e.TryGetFullName())
23
|> Option.flatten
24
|> Option.defaultValue ""
25
0 commit comments