add command dotnet-compile-fsc
used with "compilerName": "fsc" in project.json
This commit is contained in:
parent
5eb617676a
commit
d52bc92155
21 changed files with 494 additions and 12 deletions
15
test/FSharpTestProjects/CompileFail/Program.fs
Normal file
15
test/FSharpTestProjects/CompileFail/Program.fs
Normal 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
|
Reference in a new issue