My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Yesterday

  • 45 hours ago
    FSharpBinding (F# support for Monodevelop) Wiki page commented on by igor.a.mironov   -   I've created a patch that allows [http://wildart.googlecode.com/svn/trunk/FSharpBinding FSharpBinding] revision 26 (current trunk) to compile cleanly against MonoDevelop 2.0. Don't know how to attach files here so see the patch inline below. {{{ Index: Gui/CodeGenerationPanel.cs =================================================================== --- Gui/CodeGenerationPanel.cs (revision 26) +++ Gui/CodeGenerationPanel.cs (working copy) @@ -26,7 +26,7 @@ using MonoDevelop.Projects.Gui.Dialogs; using MonoDevelop.Core; using Mono.Addins; -using MonoDevelop.Projects.Parser; +using MonoDevelop.Projects.Dom.Parser; using MonoDevelop.Ide.Gui; using Gtk; Index: Gui/CompilerOptionsPanelWidget.cs =================================================================== --- Gui/CompilerOptionsPanelWidget.cs (revision 26) +++ Gui/CompilerOptionsPanelWidget.cs (working copy) @@ -24,7 +24,7 @@ using MonoDevelop.Core; using MonoDevelop.Core.Gui; using MonoDevelop.Projects; -using MonoDevelop.Projects.Parser; +using MonoDevelop.Projects.Dom.Parser; using MonoDevelop.Projects.Text; using MonoDevelop.Projects.Gui.Dialogs; Index: Project/FSharpResourceIdBuilder.cs =================================================================== --- Project/FSharpResourceIdBuilder.cs (revision 26) +++ Project/FSharpResourceIdBuilder.cs (working copy) @@ -43,7 +43,7 @@ public string GetDefaultResourceId (ProjectFile pf) { if (String.IsNullOrEmpty (pf.DependsOn) || !File.Exists (pf.DependsOn)) - return MSBuildProjectService.GetDefaultResourceId (pf); + return MSBuildResourceHandler.Instance.GetDefaultResourceId (pf); string ns = null; string classname = null; @@ -80,7 +80,7 @@ } if (classname == null) - return MSBuildProjectService.GetDefaultResourceId (pf); + return MSBuildResourceHandler.Instance.GetDefaultResourceId (pf); string culture, extn, only_filename; if (MSBuildProjectService.TrySplitResourceName (pf.RelativePath, out only_filename, out culture, out extn)) Index: Project/FSharpCompilerParameters.cs =================================================================== --- Project/FSharpCompilerParameters.cs (revision 26) +++ Project/FSharpCompilerParameters.cs (working copy) @@ -30,7 +30,7 @@ /// <summary> /// This class handles project specific compiler parameters /// </summary> - public class FSharpCompilerParameters: ICloneable + public class FSharpCompilerParameters: ConfigurationParameters, ICloneable { // Configuration parameters @@ -61,7 +61,7 @@ [ItemProperty ("TreatWarningsAsErrors", DefaultValue = false)] bool treatWarningsAsErrors; - public object Clone () + public new object Clone () { return MemberwiseClone (); } Index: FSharpLanguageBinding.cs =================================================================== --- FSharpLanguageBinding.cs (revision 26) +++ FSharpLanguageBinding.cs (working copy) @@ -28,7 +28,7 @@ using System.Threading; using MonoDevelop.Projects; -using MonoDevelop.Projects.Parser; +using MonoDevelop.Projects.Dom.Parser; using MonoDevelop.Projects.CodeGeneration; using MonoDevelop.Core; @@ -59,13 +59,13 @@ return compilerManager.CanCompile(fileName); } - public BuildResult Compile (ProjectFileCollection projectFiles, ProjectReferenceCollection references, DotNetProjectConfiguration configuration, IProgressMonitor monitor) + public BuildResult Compile (ProjectItemCollection items, DotNetProjectConfiguration configuration, IProgressMonitor monitor) { Debug.Assert(compilerManager != null); - return compilerManager.Compile (projectFiles, references, configuration, monitor); + return compilerManager.Compile (items, configuration, monitor); } - public ICloneable CreateCompilationParameters (XmlElement projectOptions) + public ConfigurationParameters CreateCompilationParameters (XmlElement projectOptions) { FSharpCompilerParameters pars = new FSharpCompilerParameters (); if (projectOptions != null) { @@ -75,7 +75,12 @@ } return pars; } - + + public ProjectParameters CreateProjectParameters (XmlElement projectOptions) + { + return null; + } + public string CommentTag { get { return "//"; } Index: FSharpBindingCompilerManager.cs =================================================================== --- FSharpBindingCompilerManager.cs (revision 26) +++ FSharpBindingCompilerManager.cs (working copy) @@ -53,7 +53,7 @@ } - public BuildResult Compile (ProjectFileCollection projectFiles, ProjectReferenceCollection references, DotNetProjectConfiguration configuration, IProgressMonitor monitor) + public BuildResult Compile (ProjectItemCollection projectItems, DotNetProjectConfiguration configuration, IProgressMonitor monitor) { FSharpCompilerParameters compilerparameters = (FSharpCompilerParameters) configuration.CompilationParameters; if (compilerparameters == null) compilerparameters = new FSharpCompilerParameters (); @@ -65,6 +65,7 @@ AddOption(writer, "--fullpaths"); AddOption(writer, "--utf8output"); + ProjectReferenceCollection references = null; if (references != null) { foreach (ProjectReference lib in references) { if ((lib.ReferenceType == ReferenceType.Project) && @@ -73,17 +74,19 @@ foreach (string fileName in lib.GetReferencedFileNames (configuration.Id)) { switch (lib.ReferenceType) { case ReferenceType.Gac: - SystemPackage pkg = Runtime.SystemAssemblyService.GetPackageFromFullName (lib.Reference); - if (pkg == null) { + SystemPackage[] pkgs = Runtime.SystemAssemblyService.GetPackagesFromFullName (lib.Reference); + if (pkgs == null || pkgs.GetLength(0) <= 0) { string msg = String.Format (GettextCatalog.GetString ("{0} could not be found or is invalid."), lib.Reference); monitor.ReportWarning (msg); continue; } - else if (pkg.IsInternalPackage) { + foreach (SystemPackage pkg in pkgs) { + if (pkg.IsInternalPackage) { AddOption(writer,"-r \"" + fileName + "\""); } if (pkg.GacRoot != null && !gacRoots.Contains (pkg.GacRoot)) gacRoots.Add (pkg.GacRoot); + } break; default: AddOption(writer,"-r \"" + fileName + "\""); @@ -147,6 +150,7 @@ AddOption(writer, String.Format("--nowarn {0}", compilerparameters.NoWarnings)); } + IEnumerable<ProjectFile> projectFiles = projectItems.GetAll<ProjectFile> (); foreach (ProjectFile finfo in projectFiles) { if (finfo.Subtype == Subtype.Directory) continue; @@ -188,8 +192,10 @@ TempFileCollection tf = new TempFileCollection(); string workingDir = "."; - if (projectFiles != null && projectFiles.Count > 0) { - workingDir = projectFiles [0].Project.BaseDirectory; + if (projectFiles != null) { + IEnumerator<ProjectFile> enumerator = projectFiles.GetEnumerator(); + if (enumerator != null && enumerator.MoveNext()) { + workingDir = enumerator.Current.Project.BaseDirectory; if (workingDir == null) // Dummy projects created for single files have no filename // and so no BaseDirectory. @@ -197,6 +203,7 @@ // ProcessStartInfo.WorkingDirectory - not able to handle null workingDir = "."; } + } LoggingService.LogInfo (compilerName + " " + writer.ToString ()); }}}
    I've created a patch that allows [http://wildart.googlecode.com/svn/trunk/FSharpBinding FSharpBinding] revision 26 (current trunk) to compile cleanly against MonoDevelop 2.0. Don't know how to attach files here so see the patch inline below. {{{ Index: Gui/CodeGenerationPanel.cs =================================================================== --- Gui/CodeGenerationPanel.cs (revision 26) +++ Gui/CodeGenerationPanel.cs (working copy) @@ -26,7 +26,7 @@ using MonoDevelop.Projects.Gui.Dialogs; using MonoDevelop.Core; using Mono.Addins; -using MonoDevelop.Projects.Parser; +using MonoDevelop.Projects.Dom.Parser; using MonoDevelop.Ide.Gui; using Gtk; Index: Gui/CompilerOptionsPanelWidget.cs =================================================================== --- Gui/CompilerOptionsPanelWidget.cs (revision 26) +++ Gui/CompilerOptionsPanelWidget.cs (working copy) @@ -24,7 +24,7 @@ using MonoDevelop.Core; using MonoDevelop.Core.Gui; using MonoDevelop.Projects; -using MonoDevelop.Projects.Parser; +using MonoDevelop.Projects.Dom.Parser; using MonoDevelop.Projects.Text; using MonoDevelop.Projects.Gui.Dialogs; Index: Project/FSharpResourceIdBuilder.cs =================================================================== --- Project/FSharpResourceIdBuilder.cs (revision 26) +++ Project/FSharpResourceIdBuilder.cs (working copy) @@ -43,7 +43,7 @@ public string GetDefaultResourceId (ProjectFile pf) { if (String.IsNullOrEmpty (pf.DependsOn) || !File.Exists (pf.DependsOn)) - return MSBuildProjectService.GetDefaultResourceId (pf); + return MSBuildResourceHandler.Instance.GetDefaultResourceId (pf); string ns = null; string classname = null; @@ -80,7 +80,7 @@ } if (classname == null) - return MSBuildProjectService.GetDefaultResourceId (pf); + return MSBuildResourceHandler.Instance.GetDefaultResourceId (pf); string culture, extn, only_filename; if (MSBuildProjectService.TrySplitResourceName (pf.RelativePath, out only_filename, out culture, out extn)) Index: Project/FSharpCompilerParameters.cs =================================================================== --- Project/FSharpCompilerParameters.cs (revision 26) +++ Project/FSharpCompilerParameters.cs (working copy) @@ -30,7 +30,7 @@ /// <summary> /// This class handles project specific compiler parameters /// </summary> - public class FSharpCompilerParameters: ICloneable + public class FSharpCompilerParameters: ConfigurationParameters, ICloneable { // Configuration parameters @@ -61,7 +61,7 @@ [ItemProperty ("TreatWarningsAsErrors", DefaultValue = false)] bool treatWarningsAsErrors; - public object Clone () + public new object Clone () { return MemberwiseClone (); } Index: FSharpLanguageBinding.cs =================================================================== --- FSharpLanguageBinding.cs (revision 26) +++ FSharpLanguageBinding.cs (working copy) @@ -28,7 +28,7 @@ using System.Threading; using MonoDevelop.Projects; -using MonoDevelop.Projects.Parser; +using MonoDevelop.Projects.Dom.Parser; using MonoDevelop.Projects.CodeGeneration; using MonoDevelop.Core; @@ -59,13 +59,13 @@ return compilerManager.CanCompile(fileName); } - public BuildResult Compile (ProjectFileCollection projectFiles, ProjectReferenceCollection references, DotNetProjectConfiguration configuration, IProgressMonitor monitor) + public BuildResult Compile (ProjectItemCollection items, DotNetProjectConfiguration configuration, IProgressMonitor monitor) { Debug.Assert(compilerManager != null); - return compilerManager.Compile (projectFiles, references, configuration, monitor); + return compilerManager.Compile (items, configuration, monitor); } - public ICloneable CreateCompilationParameters (XmlElement projectOptions) + public ConfigurationParameters CreateCompilationParameters (XmlElement projectOptions) { FSharpCompilerParameters pars = new FSharpCompilerParameters (); if (projectOptions != null) { @@ -75,7 +75,12 @@ } return pars; } - + + public ProjectParameters CreateProjectParameters (XmlElement projectOptions) + { + return null; + } + public string CommentTag { get { return "//"; } Index: FSharpBindingCompilerManager.cs =================================================================== --- FSharpBindingCompilerManager.cs (revision 26) +++ FSharpBindingCompilerManager.cs (working copy) @@ -53,7 +53,7 @@ } - public BuildResult Compile (ProjectFileCollection projectFiles, ProjectReferenceCollection references, DotNetProjectConfiguration configuration, IProgressMonitor monitor) + public BuildResult Compile (ProjectItemCollection projectItems, DotNetProjectConfiguration configuration, IProgressMonitor monitor) { FSharpCompilerParameters compilerparameters = (FSharpCompilerParameters) configuration.CompilationParameters; if (compilerparameters == null) compilerparameters = new FSharpCompilerParameters (); @@ -65,6 +65,7 @@ AddOption(writer, "--fullpaths"); AddOption(writer, "--utf8output"); + ProjectReferenceCollection references = null; if (references != null) { foreach (ProjectReference lib in references) { if ((lib.ReferenceType == ReferenceType.Project) && @@ -73,17 +74,19 @@ foreach (string fileName in lib.GetReferencedFileNames (configuration.Id)) { switch (lib.ReferenceType) { case ReferenceType.Gac: - SystemPackage pkg = Runtime.SystemAssemblyService.GetPackageFromFullName (lib.Reference); - if (pkg == null) { + SystemPackage[] pkgs = Runtime.SystemAssemblyService.GetPackagesFromFullName (lib.Reference); + if (pkgs == null || pkgs.GetLength(0) <= 0) { string msg = String.Format (GettextCatalog.GetString ("{0} could not be found or is invalid."), lib.Reference); monitor.ReportWarning (msg); continue; } - else if (pkg.IsInternalPackage) { + foreach (SystemPackage pkg in pkgs) { + if (pkg.IsInternalPackage) { AddOption(writer,"-r \"" + fileName + "\""); } if (pkg.GacRoot != null && !gacRoots.Contains (pkg.GacRoot)) gacRoots.Add (pkg.GacRoot); + } break; default: AddOption(writer,"-r \"" + fileName + "\""); @@ -147,6 +150,7 @@ AddOption(writer, String.Format("--nowarn {0}", compilerparameters.NoWarnings)); } + IEnumerable<ProjectFile> projectFiles = projectItems.GetAll<ProjectFile> (); foreach (ProjectFile finfo in projectFiles) { if (finfo.Subtype == Subtype.Directory) continue; @@ -188,8 +192,10 @@ TempFileCollection tf = new TempFileCollection(); string workingDir = "."; - if (projectFiles != null && projectFiles.Count > 0) { - workingDir = projectFiles [0].Project.BaseDirectory; + if (projectFiles != null) { + IEnumerator<ProjectFile> enumerator = projectFiles.GetEnumerator(); + if (enumerator != null && enumerator.MoveNext()) { + workingDir = enumerator.Current.Project.BaseDirectory; if (workingDir == null) // Dummy projects created for single files have no filename // and so no BaseDirectory. @@ -197,6 +203,7 @@ // ProcessStartInfo.WorkingDirectory - not able to handle null workingDir = "."; } + } LoggingService.LogInfo (compilerName + " " + writer.ToString ()); }}}

Last 30 days

  • Dec 21, 2009
    FSharpBinding (F# support for Monodevelop) Wiki page commented on by q...@spray.se   -   Vasili: The references, for MonoDevelop namespace, in the project are wrong and needs to be re-added. Still, the code is out of date for MonoDevelop 2.2. IDotNetLanguageBinding seems to have changed a lot. I tried to fix it but gave me strange errors at the time, and I'm no expert at C# so I simply gave up, sorry.
    Vasili: The references, for MonoDevelop namespace, in the project are wrong and needs to be re-added. Still, the code is out of date for MonoDevelop 2.2. IDotNetLanguageBinding seems to have changed a lot. I tried to fix it but gave me strange errors at the time, and I'm no expert at C# so I simply gave up, sorry.
  • Dec 16, 2009
    FSharpBinding (F# support for Monodevelop) Wiki page commented on by vigalchin   -   BTW: Open FSharpBinding solution in Monodevelop Check and fix references What does "Check and fix references" mean? Vasili
    BTW: Open FSharpBinding solution in Monodevelop Check and fix references What does "Check and fix references" mean? Vasili
  • Dec 16, 2009
    FSharpBinding (F# support for Monodevelop) Wiki page commented on by vigalchin   -   I am using Monodevelop 2.0. Which file is the FSharpBinding solution?? FSharpBinding.mds? If FSharpBinding.mds is the solution file, then I am getting 10 errors "cannot find metadata" errors as other posters reported. I don't understand the solution advocated by zorglub421 .... please help ... Regards, Vasili
    I am using Monodevelop 2.0. Which file is the FSharpBinding solution?? FSharpBinding.mds? If FSharpBinding.mds is the solution file, then I am getting 10 errors "cannot find metadata" errors as other posters reported. I don't understand the solution advocated by zorglub421 .... please help ... Regards, Vasili

Older

  • Sep 29, 2009
    FSharpBinding (F# support for Monodevelop) Wiki page commented on by rsdpisuy   -   I have same question as p.westcott. Can you please provide information how can I fix this problem?
    I have same question as p.westcott. Can you please provide information how can I fix this problem?
  • Sep 19, 2009
    FSharpBinding (F# support for Monodevelop) Wiki page commented on by st...@live.ru   -   Will tell more please dostpney how to fix it? Thank you for plugin.
    Will tell more please dostpney how to fix it? Thank you for plugin.
  • Sep 19, 2009
    FSharpBinding (F# support for Monodevelop) Wiki page commented on by st...@live.ru   -   [Task:File=/Desktop/Fsh/Gui/CompilerOptionsPanelWidget.cs, Line=44, Column=98, Type=Error, Priority=Normal, Description=Cannot convert type `MonoDevelop.Projects.ConfigurationParameters' to `FSharpBinding.FSharpCompilerParameters'(CS0030)]
    [Task:File=/Desktop/Fsh/Gui/CompilerOptionsPanelWidget.cs, Line=44, Column=98, Type=Error, Priority=Normal, Description=Cannot convert type `MonoDevelop.Projects.ConfigurationParameters' to `FSharpBinding.FSharpCompilerParameters'(CS0030)]
  • Sep 19, 2009
    FSharpBinding (F# support for Monodevelop) Wiki page commented on by st...@live.ru   -   [Task:File=/Desktop/Fsh/Gui/CodeGenerationPanel.cs, Line=51, Column=72, Type=Error, Priority=Normal, Description=Cannot convert type `MonoDevelop.Projects.ConfigurationParameters' to `FSharpBinding.FSharpCompilerParameters'(CS0030)]?
    [Task:File=/Desktop/Fsh/Gui/CodeGenerationPanel.cs, Line=51, Column=72, Type=Error, Priority=Normal, Description=Cannot convert type `MonoDevelop.Projects.ConfigurationParameters' to `FSharpBinding.FSharpCompilerParameters'(CS0030)]?
  • May 25, 2009
    issue 1 (Load) commented on by kim.jaehwang   -   Hi, Here is my solution. I commented out the following code for NDoc from fstask.fs. // #r @"NDoc.Core.dll" ... // open NDoc.Core And I compiled fstask.fs to get new dll. fsc -I c:/nant-0.85/bin -o NAnt.FSharpTasks.dll -a fstask.fs
    Hi, Here is my solution. I commented out the following code for NDoc from fstask.fs. // #r @"NDoc.Core.dll" ... // open NDoc.Core And I compiled fstask.fs to get new dll. fsc -I c:/nant-0.85/bin -o NAnt.FSharpTasks.dll -a fstask.fs
  • May 19, 2009
    issue 2 (Cannot build MonoDevelop.FSharp solution) reported by ker...@gmx.co.uk   -   What steps will reproduce the problem? 1. Install fsharp @1.9.4.19 via MacPorts 2. Install Mono 2.4_7 Framework - Universal from http://ftp.novell.com/pub/mono/archive/2.4/macos-10-universal/7/MonoFramework- 2.4_7.macos10.novell.universal.dmg 3. Install MonoDevelop Preview from http://monodevelop.com/Download/Mac_Preview The name of the file is MonoDevelop-Preview-2009-05-05.dmg 4. Do svn checkout 5. Open solution with MonoDevelop. Attempt to build solution. 6. Fix references by copying over missing dlls from MonoDevelop.app. Attempt to build solution. 7. Fix errors by replacing "using MonoDevelop?.Projects.Parser;" with "using MonoDevelop?.Projects.Dom.Parser;". Attempt to build solution. What is the expected output? What do you see instead? [Task:File=/Users/nnyms/src/FSharpBinding/Gui/CodeGenerationPanel.cs, Line=51, Column=73, Type=Error, Priority=Normal, Description=Cannot convert type `MonoDevelop.Projects.ConfigurationParameters' to `FSharpBinding.FSharpCompilerParameters'(CS0030)] [Task:File=/Users/nnyms/src/FSharpBinding/Gui/CompilerOptionsPanelWidget.cs, Line=44, Column=98, Type=Error, Priority=Normal, Description=Cannot convert type `MonoDevelop.Projects.ConfigurationParameters' to `FSharpBinding.FSharpCompilerParameters'(CS0030)] What version of the product are you using? On what operating system? fsharp @1.9.4.19 via MacPorts. Mono 2.4_7. onoDevelop-Preview-2009-05-05. svn checkout r26. OS X 10.5.7
    What steps will reproduce the problem? 1. Install fsharp @1.9.4.19 via MacPorts 2. Install Mono 2.4_7 Framework - Universal from http://ftp.novell.com/pub/mono/archive/2.4/macos-10-universal/7/MonoFramework- 2.4_7.macos10.novell.universal.dmg 3. Install MonoDevelop Preview from http://monodevelop.com/Download/Mac_Preview The name of the file is MonoDevelop-Preview-2009-05-05.dmg 4. Do svn checkout 5. Open solution with MonoDevelop. Attempt to build solution. 6. Fix references by copying over missing dlls from MonoDevelop.app. Attempt to build solution. 7. Fix errors by replacing "using MonoDevelop?.Projects.Parser;" with "using MonoDevelop?.Projects.Dom.Parser;". Attempt to build solution. What is the expected output? What do you see instead? [Task:File=/Users/nnyms/src/FSharpBinding/Gui/CodeGenerationPanel.cs, Line=51, Column=73, Type=Error, Priority=Normal, Description=Cannot convert type `MonoDevelop.Projects.ConfigurationParameters' to `FSharpBinding.FSharpCompilerParameters'(CS0030)] [Task:File=/Users/nnyms/src/FSharpBinding/Gui/CompilerOptionsPanelWidget.cs, Line=44, Column=98, Type=Error, Priority=Normal, Description=Cannot convert type `MonoDevelop.Projects.ConfigurationParameters' to `FSharpBinding.FSharpCompilerParameters'(CS0030)] What version of the product are you using? On what operating system? fsharp @1.9.4.19 via MacPorts. Mono 2.4_7. onoDevelop-Preview-2009-05-05. svn checkout r26. OS X 10.5.7
  • May 17, 2009
    issue 1 (Load) reported by rainer.hahnekamp   -   What steps will reproduce the problem? 1. Installed Extension as quoted 2. Registered fsc as new task What is the expected output? What do you see instead? calling nant fails in error message [loadtasks] Failure scanning "C:\Program Files\nant\bin\NAnt.FSharpTasks.dll" for extensions. (German to English Translation): Cannot not load at least one assembly type. Call LoadExceptions attributes to get further information. What version of the product are you using? On what operating system? NAnt 0.85, .NET Framework 2.0 Please provide any additional information below. .NET Reflector shows unresolved assembly referencies on FSharp.Core, NAnt.Core, NAnt.DotNetTasks
    What steps will reproduce the problem? 1. Installed Extension as quoted 2. Registered fsc as new task What is the expected output? What do you see instead? calling nant fails in error message [loadtasks] Failure scanning "C:\Program Files\nant\bin\NAnt.FSharpTasks.dll" for extensions. (German to English Translation): Cannot not load at least one assembly type. Call LoadExceptions attributes to get further information. What version of the product are you using? On what operating system? NAnt 0.85, .NET Framework 2.0 Please provide any additional information below. .NET Reflector shows unresolved assembly referencies on FSharp.Core, NAnt.Core, NAnt.DotNetTasks
  • Sep 29, 2008
    r26 (License fixed) committed by wildart   -   License fixed
    License fixed
  • Sep 05, 2008
    r25 (Added support of F# 1.9.6) committed by wildart   -   Added support of F# 1.9.6
    Added support of F# 1.9.6
  • Aug 21, 2008
    FSharpBinding (F# support for Monodevelop) Wiki page edited by wildart
  • Aug 17, 2008
    r23 (Added: Show order of files in project Ability to chang...) committed by wildart   -   Added: Show order of files in project Ability to change order of files in project Deleted: Unused sources
    Added: Show order of files in project Ability to change order of files in project Deleted: Unused sources
  • Aug 12, 2008
    FSharpBinding (F# support for Monodevelop) Wiki page edited by wildart
  • Aug 12, 2008
    FSharpBinding (F# support for Monodevelop) Wiki page edited by wildart
  • Aug 12, 2008
    FSharpBinding (F# support for Monodevelop) Wiki page edited by wildart
  • Aug 12, 2008
    r19 (License updated) committed by wildart   -   License updated
    License updated
  • Aug 12, 2008
    r18 (Added reference to used component) committed by wildart   -   Added reference to used component
    Added reference to used component
  • Aug 11, 2008
    FSharpBinding (F# support for Monodevelop) Wiki page added by wildart
  • Aug 11, 2008
    r16 (Not used files) committed by wildart   -   Not used files
    Not used files
  • Aug 11, 2008
    r15 (Initial import of F# addin for Monodevelop) committed by wildart   -   Initial import of F# addin for Monodevelop
    Initial import of F# addin for Monodevelop
  • Aug 11, 2008
    r14 (Wrong import) committed by wildart   -   Wrong import
    Wrong import
  • Aug 11, 2008
    r13 committed by wildart
  • Aug 11, 2008
    r12 (Initial import of F# addin for Monodevelop) committed by wildart   -   Initial import of F# addin for Monodevelop
    Initial import of F# addin for Monodevelop
  • Aug 06, 2008
    NAntFSharpTask (How to use F# extension for NAnt) Wiki page edited by wildart
  • Aug 06, 2008
    NAntFSharpTask (How to use F# extension for NAnt) Wiki page edited by wildart
  • Aug 06, 2008
    r10 (Resource handling removed License added Recompilation checks...) committed by wildart   -   Resource handling removed License added Recompilation checks added Readme file added
    Resource handling removed License added Recompilation checks added Readme file added
  • Aug 05, 2008
    r8 (Fixes: Problem with parameter response file with F# compiler...) committed by wildart   -   Fixes: Problem with parameter response file with F# compiler running under 'mono' 'build' file knows on which platform is running
    Fixes: Problem with parameter response file with F# compiler running under 'mono' 'build' file knows on which platform is running
  • Aug 05, 2008
    NAntFSharpTask (How to use F# extension for NAnt) Wiki page edited by wildart
  • Aug 05, 2008
    NAntFSharpTask (How to install F# extension for NAnt) Wiki page added by wildart
  • Aug 05, 2008
    r5 committed by wildart
  • Aug 05, 2008
    r4 (NAnt F# compilation task extension) committed by wildart   -   NAnt F# compilation task extension
    NAnt F# compilation task extension
  • Aug 05, 2008
    r3 committed by wildart
  • Aug 05, 2008
    r2 committed by wildart
  • Aug 05, 2008
    Project wildart created by wildart   -   Sources for artwild.blogspot.com blog
    Sources for artwild.blogspot.com blog
 
Hosted by Google Code