Over the past few months I have posted up a few Project and Item Templates for F#. Here is a quick summary of those templates.
The Project Templates include:
These Project Templates install the following Item Templates:
There is also a Item Template for:
If one desires all these elements can be installed separately or with a single extension from:
http://visualstudiogallery.msdn.microsoft.com/7221b01d-89b2-4102-bbed-da8ae319a6d6
Here is a brief description of the Project and Items Templates.
This template is for a basic F# Windows Presentation Foundation (WPF) project. This template can be found on the Visual Studio Gallery:
http://visualstudiogallery.msdn.microsoft.com/33dab4ce-62b8-419e-8072-92bc88556f78
When the template is installed you get the following template added to your F# folder when creating a new F# project:
This template that defines the following project elements:
The MainWindow.fs file provides the structure for processing the window elements.
The template can be found on the Visual Studio Gallery:
http://visualstudiogallery.msdn.microsoft.com/031891a9-06c3-47db-9c7d-8c9d4a32546a
The Project Template creates a Windows Console Application with the following components:
The template can be found on the Visual Studio Gallery at:
http://visualstudiogallery.msdn.microsoft.com/06bc7a47-be14-42b9-a8cb-86031922ff83
This extension creates a file called AssemblyInfo.fs, that contains the standard assembly definitions usually associated with other programming languages.
Once this assembly information file is included in your project, you will be able to see the usual property definitions associated with the assembly:
This template creates a Windows Library with a simple class definition. The template can be found on the Visual Studio Gallery:
http://visualstudiogallery.msdn.microsoft.com/a3f39bd9-9fd2-4465-a931-2163758a1447
This template also defines several Item Templates for creating the following project items:
This template that provides the elements for the creation windows service in F#. The template can be found on the Visual Studio Gallery:
http://visualstudiogallery.msdn.microsoft.com/1f2ee1da-e87f-4863-b98e-d8b7b63d2253
This template provides several projects elements:
The MyService.fs source file provides the implementation of the service. The template code provides the structure for the OnStart and OnStop methods and shows how an EventLog can be created and referenced:
This template is for an F# WinForms application. This template can be found on the Visual Studio Gallery:
http://visualstudiogallery.msdn.microsoft.com/eba78049-a17e-4868-9ead-065da1421052
This template that defines two project elements:
The MainForm.fs file provides the structure for a type derived from Form. It demonstrates the Form definition providing placeholders for adding forms to the control and hooking up both form and control events.