diff --git a/docs/core/tools/dotnet-add-reference.md b/docs/core/tools/dotnet-add-reference.md index d554dfb82a99a..49c15814fae55 100644 --- a/docs/core/tools/dotnet-add-reference.md +++ b/docs/core/tools/dotnet-add-reference.md @@ -29,6 +29,7 @@ The `dotnet add reference` command provides a convenient option to add project r + ``` @@ -72,6 +73,12 @@ There's no CLI command to add a reference to an assembly that isn't in a project dotnet add app/app.csproj reference lib/lib.csproj ``` +- Add a compatible .NET language (for example, F#) project reference, which works in both directions: + + ```dotnetcli + dotnet add app/app.csproj reference lib/lib.fsproj + ``` + - Add multiple project references to the project in the current directory: ```dotnetcli