You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: fcs/nuget/FSharp.Compiler.Service.MSBuild.v12.nuspec
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
<description>Adds legacy MSBuild 12.0 support to the F# compiler services package for resolving references such as #r "System, Version=4.1.0.0,..."</description>
Copy file name to clipboardExpand all lines: fcs/nuget/FSharp.Compiler.Service.ProjectCracker.nuspec
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
<description>The F# compiler services package contains a custom build of the F# compiler that exposes additional functionality for implementing F# language bindings, additional tools based on the compiler or refactoring tools. The package also includes F# interactive service that can be used for embedding F# scripting into your applications.</description>
Copy file name to clipboardExpand all lines: fcs/nuget/FSharp.Compiler.Service.nuspec
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
<description>The F# compiler services package contains a custom build of the F# compiler that exposes additional functionality for implementing F# language bindings, additional tools based on the compiler or refactoring tools. The package also includes F# interactive service that can be used for embedding F# scripting into your applications.</description>
Copy file name to clipboardExpand all lines: src/fsharp/vs/IncrementalBuild.fsi
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -142,6 +142,8 @@ type internal IncrementalBuilder =
142
142
// TODO: make this an Eventually(which can be scheduled) or an Async(which can be cancelled)
143
143
member GetCheckResultsAndImplementationsForProject: CompilationThreadToken-> Cancellable<PartialCheckResults* IL.ILAssemblyRef* IRawFSharpAssemblyData option* TypedImplFile list option>
144
144
145
+
member DeduplicateParsedInputModuleNameInProject: Ast.ParsedInput-> Ast.ParsedInput
146
+
145
147
/// Get the logical time stamp that is associated with the output of the project if it were gully built immediately
146
148
member GetLogicalTimeStampForProject: TimeStampCache* CompilationThreadToken-> DateTime
// Note: projectSourceFiles is only used to compute isLastCompiland, and is ignored if Build.IsScript(mainInputFileName) is true (which it is in this case).