Joe
Joe

Reputation: 836

Which process is the Visual Studio F# interactive window hosted by?

I'm assuming that code executed in the F# interactive window in Visual Studio is hosted in the devenv process, but I'm not certain of that. There's another process called fsi that I would guess is the actual interactive process, but I'm not certain of that.

Can you clarify for me which process hosts this?

Upvotes: 2

Views: 111

Answers (1)

Petr
Petr

Reputation: 4280

Yes, F# interactive window basically output of fsi.exe process running separately from Visual Studio. In Visual Studio Tools/Options menu you can choose 64-bit mode for this fsi process.

Upvotes: 6

Related Questions