Skip to content
Merged
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
11 changes: 1 addition & 10 deletions docs/content/project.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -351,20 +351,11 @@ ProjectCracker.GetProjectOptionsFromProjectFile(projectFile, [("Configuration",

(**

Another utility is provided to obtain a detailed view of the resolved and processed project file. The returned object can be used to access the fully resolved references, source files that will be included during compilation, and other options.

*)

FSharpProjectFileInfo.Parse(projectFile, [("Configuration", "Release")])

(**

For debugging purposes it is also possible to obtain a detailed log from the assembly resolution process.

*)

let p = FSharpProjectFileInfo.Parse(projectFile, enableLogging=true)
Console.WriteLine(p.LogOutput)
let options, logs = ProjectCracker.GetProjectOptionsFromProjectFileLogged(projectFile, [("Configuration", "Release")])

(**
Summary
Expand Down