Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc92ef56

Browse files
committed
fix build
1 parentd3381bc commitc92ef56

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

‎Makefile‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ install:
6767
-rm -fr$(DESTDIR)$(monodir)/Microsoft\F#
6868
-rm -fr$(DESTDIR)$(monodir)/Microsoft\SDKs/F#
6969
-rm -fr$(DESTDIR)$(monodir)/gac/FSharp.Core
70-
-rm -fr$(DESTDIR)$(monodir)/gac/FSharp.Compiler
70+
-rm -fr$(DESTDIR)$(monodir)/gac/FSharp.Compiler.Private
7171
-rm -fr$(DESTDIR)$(monodir)/xbuild/Microsoft/VisualStudio/v/FSharp
7272
-rm -fr$(DESTDIR)$(monodir)/xbuild/Microsoft/VisualStudio/v11.0/FSharp
7373
-rm -fr$(DESTDIR)$(monodir)/xbuild/Microsoft/VisualStudio/v12.0/FSharp
7474
-rm -fr$(DESTDIR)$(monodir)/xbuild/Microsoft/VisualStudio/v14.0/FSharp
7575
-rm -fr$(DESTDIR)$(monodir)/xbuild/Microsoft/VisualStudio/v15.0/FSharp
7676
$(MAKE) -C mono/FSharp.Core TargetFramework=net40 install
7777
$(MAKE) -C mono/FSharp.Build install
78-
$(MAKE) -C mono/FSharp.Compiler install
78+
$(MAKE) -C mono/FSharp.Compiler.Private install
7979
$(MAKE) -C mono/Fsc install
8080
$(MAKE) -C mono/FSharp.Compiler.Interactive.Settings install
8181
$(MAKE) -C mono/FSharp.Compiler.Server.Shared install

‎src/fsharp/FSharp.Compiler.Private/FSharp.Compiler.Service.Private.netcore.nuspec‎renamed to ‎src/fsharp/FSharp.Compiler.Private/FSharp.Compiler.Private.netcore.nuspec‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<packagexmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
4-
<id>FSharp.Compiler.Service.netcore</id>
4+
<id>FSharp.Compiler.Private.netcore</id>
55
<description>
66
.NET Core compatible version of the fsharp compiler service dll
77
Supported Platforms: - .NET Core (netstandard1.6)

‎src/fsharp/fsi/fsimain.fs‎

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -308,10 +308,11 @@ let evaluateSession(argv: string[]) =
308308

309309
// Start the session
310310
fsiSession.Run()
311-
312-
with e-> printf"Exception by fsi.exe:\n%+A\n" e
313-
314-
0
311+
0
312+
with
313+
| Microsoft.FSharp.Compiler.ErrorLogger.StopProcessingExn_->1
314+
| Microsoft.FSharp.Compiler.ErrorLogger.ReportedError_->1
315+
| e-> eprintf"Exception by fsi.exe:\n%+A\n" e;1
315316

316317
// Mark the main thread as STAThread since it is a GUI thread
317318
[<EntryPoint>]

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp