From 714f484d5ecd8204500ea447a3dc493598f4b0f0 Mon Sep 17 00:00:00 2001 From: Gauthier Segay Date: Tue, 18 Jul 2023 16:50:22 +0200 Subject: [PATCH 1/2] Update index.md adding note for users of .NET Framework, on how to invoke FSI. --- docs/fsharp/tools/fsharp-interactive/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/fsharp/tools/fsharp-interactive/index.md b/docs/fsharp/tools/fsharp-interactive/index.md index 8027a478de7b5..0197d961dbd52 100644 --- a/docs/fsharp/tools/fsharp-interactive/index.md +++ b/docs/fsharp/tools/fsharp-interactive/index.md @@ -11,6 +11,8 @@ F# Interactive (dotnet fsi) is used to run F# code interactively at the console, To run F# Interactive from the console, run `dotnet fsi`. You will find `dotnet fsi` in any .NET SDK. +Remark: if you intend to use F# interactive under .NET Framework runtime, you'll need the [Visual Studio Build Tools](https://visualstudio.microsoft.com/downloads/?q=build+tools) or an edition of Visual Studio installed, and invoke the `FsiAnyCPU.exe` command from a "Developer Command Prompt" or simply make `FsiAnyCPU.exe` available in the `PATH` environment variable. + For information about available command-line options, see [F# Interactive Options](../../language-reference/fsharp-interactive-options.md). ## Executing code directly in F# Interactive From ed5f48385e8f603e4da8c86458a824de2b087566 Mon Sep 17 00:00:00 2001 From: Gauthier Segay Date: Wed, 19 Jul 2023 16:12:23 +0200 Subject: [PATCH 2/2] Update docs/fsharp/tools/fsharp-interactive/index.md Co-authored-by: Bill Wagner --- docs/fsharp/tools/fsharp-interactive/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/fsharp/tools/fsharp-interactive/index.md b/docs/fsharp/tools/fsharp-interactive/index.md index 0197d961dbd52..7caa391811d98 100644 --- a/docs/fsharp/tools/fsharp-interactive/index.md +++ b/docs/fsharp/tools/fsharp-interactive/index.md @@ -11,7 +11,8 @@ F# Interactive (dotnet fsi) is used to run F# code interactively at the console, To run F# Interactive from the console, run `dotnet fsi`. You will find `dotnet fsi` in any .NET SDK. -Remark: if you intend to use F# interactive under .NET Framework runtime, you'll need the [Visual Studio Build Tools](https://visualstudio.microsoft.com/downloads/?q=build+tools) or an edition of Visual Studio installed, and invoke the `FsiAnyCPU.exe` command from a "Developer Command Prompt" or simply make `FsiAnyCPU.exe` available in the `PATH` environment variable. +> [!NOTE] +> If you intend to use F# interactive under .NET Framework runtime, you'll need the [Visual Studio Build Tools](https://visualstudio.microsoft.com/downloads/?q=build+tools) or an edition of Visual Studio installed, and invoke the `FsiAnyCPU.exe` command from a "Developer Command Prompt" or simply make `FsiAnyCPU.exe` available in the `PATH` environment variable. For information about available command-line options, see [F# Interactive Options](../../language-reference/fsharp-interactive-options.md).