Browse Source

Project options now working for F# projects.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3776 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 17 years ago
parent
commit
adff7b48bf
  1. 2
      src/AddIns/BackendBindings/FSharp/FSharpBinding/Project/FSharpBinding.addin
  2. 2
      src/AddIns/BackendBindings/FSharp/FSharpBinding/Project/Src/project.fs

2
src/AddIns/BackendBindings/FSharp/FSharpBinding/Project/FSharpBinding.addin

@ -5,12 +5,14 @@
<Manifest> <Manifest>
<Identity name = "ICSharpCode.FSharpBinding"/> <Identity name = "ICSharpCode.FSharpBinding"/>
<Dependency addin = "ICSharpCode.CSharpBinding" requirePreload = "true"/>
</Manifest> </Manifest>
<Runtime> <Runtime>
<Import assembly = "FSharpBinding.dll"/> <Import assembly = "FSharpBinding.dll"/>
<Import assembly = ":ICSharpCode.SharpDevelop"/> <Import assembly = ":ICSharpCode.SharpDevelop"/>
<Import assembly = ":ICSharpCode.SharpDevelop.Dom"/> <Import assembly = ":ICSharpCode.SharpDevelop.Dom"/>
<Import assembly = "$ICSharpCode.CSharpBinding/CSharpBinding.dll"/>
</Runtime> </Runtime>
<Path name = "/SharpDevelop/Workbench/Ambiences"> <Path name = "/SharpDevelop/Workbench/Ambiences">

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

@ -221,7 +221,7 @@ type FsOptions() =
override x.LoadPanelContents() = override x.LoadPanelContents() =
let this = (typeof<FsOptions>) let this = (typeof<FsOptions>)
let caller = this.Assembly let caller = this.Assembly
x.SetupFromXmlStream(caller.GetManifestResourceStream("FSharpBindings.Resources.FsOptions.xfrm")) x.SetupFromXmlStream(caller.GetManifestResourceStream("FsOptions.xfrm"))
x.InitializeHelper() x.InitializeHelper()
x.helper.BindBoolean(x.Get<CheckBox>("standalone"), "Standalone", false) |> ignore x.helper.BindBoolean(x.Get<CheckBox>("standalone"), "Standalone", false) |> ignore
x.helper.BindBoolean(x.Get<CheckBox>("nomllib"), "NoMLLib", false) |> ignore x.helper.BindBoolean(x.Get<CheckBox>("nomllib"), "NoMLLib", false) |> ignore

Loading…
Cancel
Save