From 2a817cde272189d9eb995856a783c6b8508b98b3 Mon Sep 17 00:00:00 2001 From: zanaptak <53196138+zanaptak@users.noreply.github.com> Date: Sat, 7 Aug 2021 13:56:40 -0500 Subject: [PATCH] Add nuget prefix to local source example Fixes #25512 --- docs/fsharp/tools/fsharp-interactive/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/fsharp/tools/fsharp-interactive/index.md b/docs/fsharp/tools/fsharp-interactive/index.md index 201ca60a74496..7652df8c4d2c4 100644 --- a/docs/fsharp/tools/fsharp-interactive/index.md +++ b/docs/fsharp/tools/fsharp-interactive/index.md @@ -120,8 +120,8 @@ printfn $"{f (dsharp.tensor 1.2)}" You can also specify a package source with the `#i` command. The following example specifies a remote and a local source: ```fsharp -#i "nuget:https://my-remote-package-source/index.json" -#i @"path-to-my-local-source" +#i "nuget: https://my-remote-package-source/index.json" +#i """nuget: C:\path\to\my\local\source""" ``` This will tell the resolution engine under the covers to also take into account the remote and/or local sources added to a script.