From 95f363a2edb171c1820e3ce3d60141914b9f5db7 Mon Sep 17 00:00:00 2001 From: Gauthier Segay Date: Fri, 20 Nov 2020 03:05:07 -0800 Subject: [PATCH] Pointer to other extensions in referencing packages section. The readme in the page I'm adding link to is pending PR merge: https://github.com/dotnet/fsharp/pull/10511 --- docs/fsharp/tutorials/fsharp-interactive/index.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/fsharp/tutorials/fsharp-interactive/index.md b/docs/fsharp/tutorials/fsharp-interactive/index.md index 1229166eed2a3..65cc391d53d36 100644 --- a/docs/fsharp/tutorials/fsharp-interactive/index.md +++ b/docs/fsharp/tutorials/fsharp-interactive/index.md @@ -86,6 +86,7 @@ F# scripting is natively supported in [Visual Studio](../../get-started/get-star > [!NOTE] > Package management is an F# 5 feature and is currently available using the latest .NET 5 SDK. +> Package management system is extensible, read more [about other extensions](https://github.com/dotnet/fsharp/tree/main/src/fsharp/Microsoft.DotNet.DependencyManager). F# Interactive supports referencing NuGet packages with the `#r "nuget:"` syntax and an optional version: @@ -117,6 +118,8 @@ printfn "%A" (f (dsharp.tensor 1.2)) You can specify as many package references as you like in a script. +Read more about [package management extensibility and other extensions](https://github.com/dotnet/fsharp/tree/main/src/fsharp/Microsoft.DotNet.DependencyManager). + ## Referencing assemblies on disk with F# interactive Alternatively, if you have an assembly on disk and wish to reference that in a script, you can use the `#r` syntax to specify an assembly. Consider the following code in a project compiled into `MyAssembly.dll`: