-
-
Notifications
You must be signed in to change notification settings - Fork 37
fsharp compiler
Zeioth edited this page Oct 4, 2023
·
16 revisions
You MUST have a .fsproj
project file in your current working directory in order for the F# compiler to work correctly. The available options for the F# compiler are
Dotnet build and run
Dotnet build
Run REPL
Example of using Run REPL
As you can see we don't offer the usual compilation options build & run
, build
, run
, and build solution
for F#. They can't be implemented because dotnet
is extremely privative in how they let their users compile. This might change in the future.
In the meantime use .fsproj
files instead of .solution.toml
files in your F# projects.