简体   繁体   中英

Suave project with Ionide

I'm trying to create a Suave project via Ionide, but it only gives me these options: classlib, console, saturn, expecto. What should I do to Suave appears to me?

Suave has not been integrated into the VSCode command pallette, so you could create a new project from the command line instead.

Run this from the command line to add the Suave project template to the dotnet new command:

dotnet new -i Suave.Template

Now create an empty folder for your project, and open or cd a cmd line to that folder.

Then run this from the command line to create a new project:

dotnet new Suave --name suave-project --language F#

See more instructions athttps://github.com/JacobChang/Suave.Template#using-the-template

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM