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
Copy file name to clipboardExpand all lines: src/fsharp/vs/SimpleServices.fsi
+8-3Lines changed: 8 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -104,14 +104,19 @@ type SimpleSourceCodeServices =
104
104
[<System.Obsolete("This method has been deprecated. Use the SourceCodeServices API directly. see http://fsharp.github.io/FSharp.Compiler.Service/project.html")>]
105
105
member ParseAndCheckProject: projectFileName:string * argv:string []-> Async<FSharpCheckProjectResults>
106
106
107
-
/// Compile using the given flags. Source files names are resolved via the FileSystem API. The output file must be given by a -o flag.
107
+
/// Compile using the given flags. Source files names are resolved via the FileSystem API.
108
+
/// The output file must be given by a -o flag.
109
+
/// The first argument is ignored and can just be "fsc.exe".
108
110
member Compile: argv:string []-> FSharpErrorInfo []* int
109
111
110
112
/// TypeCheck and compile provided AST
111
113
member Compile: ast:ParsedInput list * assemblyName:string * outFile:string * dependencies:string list * ?pdbFile:string * ?executable:bool * ?noframework:bool -> FSharpErrorInfo []* int
112
114
113
-
/// Compiles to a dynamic assembly usinng the given flags. Any source files names
114
-
/// are resolved via the FileSystem API. An output file name must be given by a -o flag, but this will not
115
+
/// Compiles to a dynamic assembly usinng the given flags.
116
+
///
117
+
/// The first argument is ignored and can just be "fsc.exe".
118
+
///
119
+
/// Any source files names are resolved via the FileSystem API. An output file name must be given by a -o flag, but this will not
115
120
/// be written - instead a dynamic assembly will be created and loaded.
116
121
///
117
122
/// If the 'execute' parameter is given the entry points for the code are executed and
0 commit comments