Browse Source

Fix compiler warning in F# binding.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5466 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Daniel Grunwald 16 years ago
parent
commit
df834b637e
  1. 4
      src/AddIns/BackendBindings/FSharp/FSharpBinding/Project/Src/project.fs

4
src/AddIns/BackendBindings/FSharp/FSharpBinding/Project/Src/project.fs

@ -31,9 +31,9 @@ open ICSharpCode.SharpDevelop.Gui.OptionPanels
type FSharpProject = class type FSharpProject = class
inherit CompilableProject inherit CompilableProject
new (info : ProjectLoadInformation) as x = new (info : ProjectLoadInformation) =
{ inherit CompilableProject(info ) } { inherit CompilableProject(info ) }
new (info : ProjectCreateInformation) as x = new (info : ProjectCreateInformation) =
{ inherit CompilableProject(info) } then { inherit CompilableProject(info) } then
try try
base.AddImport(@"$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets", null) base.AddImport(@"$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets", null)

Loading…
Cancel
Save