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
2 changes: 1 addition & 1 deletion NuGet.Config
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<add key="myget.org roslyn-tools" value="https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json" />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="myget.org roslyn tools" value="https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json" />
<add key="myget.org roslyn" value="https://dotnet.myget.org/F/roslyn-for-vs-for-mac/api/v3/index.json" />
<add key="myget.org roslyn" value="https://dotnet.myget.org/F/roslyn/api/v3/index.json" />
<add key="myget.org symreader-converter" value="https://dotnet.myget.org/F/symreader-converter/api/v3/index.json" />
</packageSources>

Expand Down
2 changes: 1 addition & 1 deletion RoslynPackageVersion.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.0-vs-for-mac-62329-05
2.8.0-beta1-62707-12
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ type internal FSharpDocumentDiagnosticAnalyzer() =
return results
}

override __.Priority = 10 // Default = 50

override this.SupportedDiagnostics = RoslynHelpers.SupportedDiagnostics()

override this.AnalyzeSyntaxAsync(document: Document, cancellationToken: CancellationToken): Task<ImmutableArray<Diagnostic>> =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ type internal SimplifyNameDiagnosticAnalyzer() =
customTags = DiagnosticCustomTags.Unnecessary)

static member LongIdentPropertyKey = "FullName"

override __.Priority = 100 // Default = 50
override __.SupportedDiagnostics = ImmutableArray.Create Descriptor
override this.AnalyzeSyntaxAsync(_, _) = Task.FromResult ImmutableArray<Diagnostic>.Empty

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ type internal UnusedDeclarationsAnalyzer() =
//#endif
unusedRanges

override __.Priority = 80 // Default = 50

override __.SupportedDiagnostics = ImmutableArray.Create Descriptor

override __.AnalyzeSyntaxAsync(_, _) = Task.FromResult ImmutableArray<Diagnostic>.Empty
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ type internal UnusedOpensDiagnosticAnalyzer() =
isEnabledByDefault = true,
customTags = DiagnosticCustomTags.Unnecessary)

override __.Priority = 90 // Default = 50
override __.SupportedDiagnostics = ImmutableArray.Create Descriptor
override this.AnalyzeSyntaxAsync(_, _) = Task.FromResult ImmutableArray<Diagnostic>.Empty

Expand Down
3 changes: 2 additions & 1 deletion vsintegration/src/FSharp.Editor/QuickInfo/Views.fs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ type internal QuickInfoViewProvider
anonymousTypes = empty,
usageText = navigable usage,
exceptionText = navigable exceptions)
//capturesText = empty)

[<Export (typeof<IDeferredQuickInfoContentToFrameworkElementConverter>)>]
type FSharpDeferredContentConverter () =
Expand All @@ -131,4 +132,4 @@ type FSharpDeferredContentConverter () =
let fsharpDeferredContent = deferredContent :?> FSharpQuickInfoDeferredContent
upcast fsharpDeferredContent.CreateFrameworkElement()
member this.GetApplicableType () =
typeof<FSharpQuickInfoDeferredContent>
typeof<FSharpQuickInfoDeferredContent>