add command dotnet-compile-fsc

used with "compilerName": "fsc" in project.json
This commit is contained in:
Enrico Sada 2015-12-17 14:28:11 +01:00
commit d52bc92155
21 changed files with 494 additions and 12 deletions

View file

@ -0,0 +1,15 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace TestApp
open System
open System.Diagnostics
module Program =
[<EntryPoint>]
let Main (args: string array) =
this will not compile !
0