You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// The set of source files in the current project.
60
+
memberSourceFiles:string list
61
+
/// Projects referenced by this project.
62
+
memberReferencedProjectsPath:string list
63
+
/// The time at which the project was loaded.
64
+
memberLoadTime:DateTime
65
+
/// Additional command line argument options for the project.
66
+
memberOtherOptions:string list
67
+
50
68
/// All the relevant compiler information for a given file.
51
69
/// Contains the source text, untyped and typed tree information.
52
70
type CliContext =
@@ -69,6 +87,8 @@ type CliContext =
69
87
/// A handle to the results of the entire project
70
88
/// See <a href="https://fsharp.github.io/fsharp-compiler-docs/reference/fsharp-compiler-codeanalysis-fsharpcheckprojectresults.html">FSharpCheckProjectResults Type</a>
71
89
CheckProjectResults:FSharpCheckProjectResults
90
+
/// Options related to the project being analyzed.
91
+
ProjectOptions:AnalyzerProjectOptions
72
92
}
73
93
74
94
interface Context
@@ -101,6 +121,8 @@ type EditorContext =
101
121
/// A handle to the results of the entire project
102
122
/// See <a href="https://fsharp.github.io/fsharp-compiler-docs/reference/fsharp-compiler-codeanalysis-fsharpcheckprojectresults.html">FSharpCheckProjectResults Type</a>
0 commit comments