Reputation: 9537
I installed the F# Tools for Visual Studio Express 2012 for Web. When I select New Project I expected to see F# Application in the list of Visual F# templates but all I see is F# Library and F# Tutorial.
I say I expected it because I see it referenced in the book Programming F# 3.0 by Chris Smith.
Any suggestions for getting the F# Application template in the list?
Upvotes: 6
Views: 1121
Reputation: 2920
I got F# from this link, and I installed the extensions (Tools -> Extensions and Updates) shown below:
I can now create the following types of projects in Visual Studio Express 2012 for Web:
Jon Harrop's videos are well worth the viewing, of course.
EDIT
The second image is scaled down and the text is illegible. The project templates under Visual F# -> Windows
are:
Just to complete the list, here are the other project types:
Visual F# -> Silverlight
ASPNET
Service
Upvotes: 6
Reputation: 6543
There is no F# Application template in the VS Express 2012 Web edition but you should be able to create one easily by adding an F# library project and then going to the project properties and specifying the output type as Console Application in the Application tab.
The following short video from Jon Harrop shows how to create a Windows application: WPF desktop GUI app development in F# with VS Express 2012 for Web
The process is the same for a console application.
Upvotes: 10