Questions tagged [ionide]

An Atom Editor and Visual Studio Code package suite for cross platform F# development.

Ionide includes all the necessary features you’d find in a modern IDE - autocomplete, tooltips, document formatting, syntax and error highlighting, and many more.

An Atom Editor and Visual Studio Code package suite for cross platform F# development.

Need Help?

Join the chat

Ask a question, make a suggestion, or just chat with other Ionide users.

69 questions
29
votes
11 answers

How to Display VS Code output window to side rather than below

In my VS Code set up I see the output/FSI frame below the main text editor pane like this: whereas I would love it to appear to the right in the side-by-side view like it does on the images in this link:…
Stewart_R
  • 13,764
  • 11
  • 60
  • 106
13
votes
3 answers

Fix for "Package manager key paket was not registered" in build.fsx

When I open a Fake build script in Visual Studio Code, like this: > dotnet new -i fake-template > dotnet new fake > dotnet tool update fake-cli > code build.fsx I see this error message in the editor and none of the Fake namespaces, modules, or…
Wallace Kelly
  • 15,565
  • 8
  • 50
  • 71
10
votes
0 answers

Getting internal error: BuildFrameworkTcImports: no resolution of 'FSharp.Core, Version=4.4.1.0' with ionide in VSCode

Getting this internal error in PROBLEMS window and Auto Complete is not working. file: 'file:///startup' severity: 'Error' message: 'internal error: BuildFrameworkTcImports: no resolution of 'FSharp.Core, Version=4.4.1.0, Culture=neutral,…
vrnithinkumar
  • 1,273
  • 1
  • 11
  • 29
9
votes
0 answers

Intellisense not working for packages with Ionide in VSCode

I am just beginning with FSharp and am trying to work in VSCode on my mac. I've followed all the install instructions here https://github.com/dotnet/netcorecli-fsc/wiki/.NET-Core-SDK-1.0.1 However Inoide can't seem to pick up any of the packages…
JimmyP
  • 444
  • 3
  • 11
7
votes
0 answers

VSCode Interactive syntax highlighting with Mono?

F# interactive in Visual Studio Code (with Ionide) has syntax highlighting by default on Windows 10. I just installed a Linux distro, and VSCode + Ionide doesn't show syntax highlights in the interactive terminal. Any idea how to configure this?…
7
votes
1 answer

Ionide-fsharp for Visual Studio Code

After I have installed Ionide for Visual Studio Code, how do I begin using it (eg. syntax highlighting, autocompletion)? What settings do I have to change?
6
votes
0 answers

Getting F# working in VSCode when "dotnet" is not found on MacOSX?

I'm completely new to dotnet and vscode so I might be missing something trivial. I just want to get F# running in VSCode on my Mac. I first tried installing dotnet from brew: brew cask install dotnet-sdk This seems to be working fine from the…
Johan
  • 37,479
  • 32
  • 149
  • 237
6
votes
1 answer

F# file formatting with visual studio code

I'm starting using VS code with F# and dotnet core. I've installed ionide extension but file formatting for F# is not working. How did you get it working in vs code?.
MariangeMarcano
  • 921
  • 1
  • 8
  • 20
6
votes
1 answer

Character/line limit when pasting in vscode terminal

I have a problem when using Fsi in VSCode. I've been having this issue since 1.7 and it persists in the current releases of 1.8. If I use alt + enter to send a code selection to VSCode it works, but only for short selections. When the selection is…
CodeMonkey
  • 4,067
  • 1
  • 31
  • 43
6
votes
1 answer

How to launch an F# console app from VS Code

Given a simple F# console app: [] let main argv = printfn "Hello world" Console.ReadLine() |> ignore 0 What do I need to do to start the console app up in the same manner that ctrl F5 would do in Visual Studio. I have…
Michael McDowell
  • 383
  • 4
  • 11
5
votes
2 answers

VSCode OmniSharp/C# intellisense does not see Ionide/F# lib modules/namespaces

I am using VSCode-Insiders and OmniSharp C# intellisense does not see F# types/modules/namespaces. Here is simple project: module T1 let t = 42 And C#: using System; namespace flowRunner { class Program { static void Main(string[]…
dvitel
  • 563
  • 3
  • 10
5
votes
1 answer

How do I specify a target architecture when building projects in Visual Studio code?

I am new to VS code/F# and I am trying to build a F# console app (on both Windows workstation and on my Linux computer). I installed the Ionide extension together with FAKE. The code I am considering is the Iris example (see How to translate the…
Davide Fiocco
  • 5,350
  • 5
  • 35
  • 72
5
votes
0 answers

F Sharp The target "Build" does not exist in the project

Hello I am trying to learn F#, I'd like to compile something in F# These are the steps that I have followed: Downloaded Visual Studio Code Downloaded + installed all the Ionide extensions Ran F# new project, selected console application Ran FAKE:…
arcanine
  • 1,933
  • 1
  • 15
  • 22
5
votes
1 answer

Adding unit tests to a F# project in VSCode

I'm using VSCode and the Ionide suite of packages to create a console application in F#. I need to add unit tests to the application so that when I ctrl+shift+p FAKE: Build the project, the tests are run during the build process. I've created a…
Steven
  • 3,238
  • 21
  • 50
5
votes
1 answer

F# ionide websharperserverclient - how to run

I have a problem with running websharperserverclient template app from ionide project generator, and cannot find any information on the web how to do it - the closest thing i got was this question - I actually tried to run it with xsp4 in the…
1
2 3 4 5