Skip to content

Commit 4c49bae

Browse files
committed
Update SimpleServices.fsi
1 parent 2eeb2bf commit 4c49bae

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/fsharp/vs/SimpleServices.fsi

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,19 @@ type SimpleSourceCodeServices =
104104
[<System.Obsolete("This method has been deprecated. Use the SourceCodeServices API directly. see http://fsharp.github.io/FSharp.Compiler.Service/project.html")>]
105105
member ParseAndCheckProject: projectFileName:string * argv:string [] -> Async<FSharpCheckProjectResults>
106106

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".
108110
member Compile: argv:string [] -> FSharpErrorInfo [] * int
109111
110112
/// TypeCheck and compile provided AST
111113
member Compile: ast:ParsedInput list * assemblyName:string * outFile:string * dependencies:string list * ?pdbFile:string * ?executable:bool * ?noframework:bool -> FSharpErrorInfo [] * int
112114

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
115120
/// be written - instead a dynamic assembly will be created and loaded.
116121
///
117122
/// If the 'execute' parameter is given the entry points for the code are executed and

0 commit comments

Comments
 (0)