Skip to content

Instantly share code, notes, and snippets.

@MattMS
Last active July 24, 2019 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MattMS/f6ebf41cb145a48330b820bbee8b474f to your computer and use it in GitHub Desktop.
Save MattMS/f6ebf41cb145a48330b820bbee8b474f to your computer and use it in GitHub Desktop.
Minimum required for a WinForms application in F# in .NET Framework 4.7
@echo off
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\FSharp\fsc.exe" %*
open System
open System.Windows.Forms
[<STAThread>]
do
Application.EnableVisualStyles()
Application.Run(new Form())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment