Skip to content

Commit e132957

Browse files
committed
Update project.fsx
1 parent 76c0c33 commit e132957

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/content/project.fsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -283,16 +283,15 @@ In some situations, e.g. in an IDE, you may wish to allow references to other F#
283283
a DLL. To do this, fill in the ProjectReferences entry in ProjectOptions, which recursively specifies the project
284284
options for dependent projects. Each project reference still needs a corresponding `-r:path-to-output-of-project.dll`
285285
command line argument in ProjectOptions, along with an entry in ProjectReferences.
286+
The first element of each tuple in the ProjectReferences entry should be the DLL name, i.e. `path-to-output-of-project.dll`.
287+
This should be the same as the text used in the `-r` project reference.
286288
287289
When a project reference is used, the analysis will make use of the results of incremental
288290
analysis of the referenced F# project from source files, without requiring the compilation of these files to DLLs.
289291
290292
To efficiently analyze a set of F# projects which include cross-references, you should populate the ProjectReferences
291293
correctly and then analyze each project in turn.
292294
293-
> **NOTE:** Project references are in prototype. Using project references may currently degrade the responsiveness of the
294-
compiler service, because requests may not yet be serviced while dependent projects are being analyzed.
295-
296295
*)
297296

298297
(**

0 commit comments

Comments
 (0)