Re: [Mono-dev] Recent xbuild fixes causing issues with finding mcs

2014-02-17 Thread Michael Hutchinson
binary is in the path during the rest of the build, or that code Michael Hutchinson pointed out will fail... Adding the bin directory of my Mono installation to the PATH does solve the problem. I can work with this, it is just a change in the usage. Hope it helps, Rafael Teixeira O..:.)

Re: [Mono-dev] Recent xbuild fixes causing issues with finding mcs

2014-02-16 Thread Michael Hutchinson
Yes, but xbuild uses Process.Start, which automatically executes exe files using Mono. Not sure why that's failing on your machine. On 15 February 2014 22:13, Michael Franz mvfr...@gmail.com wrote: On Sat, Feb 15, 2014 at 10:02 PM, Michael Hutchinson m.j.hutchin...@gmail.com wrote: AFAIK

Re: [Mono-dev] Recent xbuild fixes causing issues with finding mcs

2014-02-16 Thread Michael Hutchinson
/processes.c#L808 On 16 February 2014 09:00, Michael Franz mvfr...@gmail.com wrote: On Sun, Feb 16, 2014 at 7:34 AM, Andrés G. Aragoneses kno...@gmail.com wrote: On 16/02/14 10:15, Michael Hutchinson wrote: ... which automatically executes exe files using Mono. Are you sure that statement

Re: [Mono-dev] Recent xbuild fixes causing issues with finding mcs

2014-02-15 Thread Michael Hutchinson
something wrong from the start and now I need to fix the process, but it seems like a simple process. e753ca2 Michael Hutchinson [xbuild] Fix dependency in C# targets c197478 Michael Hutchinson [xbuild] Fix 2.0 tests to handle mcs sdk argument 693176c Michael Hutchinson [xbuild] Fix

Re: [Mono-dev] sub-process invocation on posix

2013-06-10 Thread Michael Hutchinson
FWIW, you actually just need to double quote each argument and escape double quotes so you can very easily write a helper to do this in a way that works on both Mono and .NET: static Process StartProcess (string name, params string[] args) { string a = null; if (args != null args.Length

Re: [Mono-dev] ASP.NET Xarmin - GSoC 2013

2013-04-25 Thread Michael Hutchinson
their understanding of what makes a good development experience :) -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Reference to System.Data.Entity in monodevelop trunk

2012-09-25 Thread Michael Hutchinson
. MD does not depend on System.Data.Entity. The patch is incorrect, that's simply MD's definition of what is expected to be in certain target frameworks but does not affect its actual dependencies at all. -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] Show Linux . hidden directories

2012-06-13 Thread Michael Hutchinson
are. Probably Windows Forms. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Current Implementation of Async Sockets

2012-05-17 Thread Michael Hutchinson
or should I rather stick with Java? I'm also thinking of going the C++ way, but I'm not yet sure if the result would justify the additional work. It's possible, see https://github.com/jacksonh/manos -- Michael Hutchinson http://mjhutchinson.com ___ Mono

Re: [Mono-dev] Question about GSoC projects

2012-03-29 Thread Michael Hutchinson
also would be glad if you would advise another project from Mono projects list. We can certainly answer specific questions if you're having trouble figuring things out, but you'll need to be able to do some research/investigation yourself in order to write a good proposal. -- Michael Hutchinson

Re: [Mono-dev] GSoC 2012 - GTK# App

2012-03-29 Thread Michael Hutchinson
and needed as well as demonstrating your ability to implement it. Note also that you can submit multiple proposals, if there are other projects that interest you. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel

Re: [Mono-dev] [MonoDevelop] GSoC Application 2011 for Axiom

2011-04-07 Thread Michael Hutchinson
...@lists.ximian.com http://lists.ximian.com/mailman/listinfo/monodevelop-list -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] GSOC MonoDevelop Project

2011-04-06 Thread Michael Hutchinson
be greatly appreciated. Also I want to know the mentors of the projects Webkit based HTML editor, CSS support or JS support under Web Tools. There isn't a pre-assigned mentor, you should apply and if a mentor likes your proposal they will pick it up. -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] Faster

2011-03-24 Thread Michael Hutchinson
can pretend the branch doesn't exist and keep executing as it was not taken. This means the null check costs virtually nothing on a modern cpu. Could we have the JIT recognize the if (foo == null) throw ... pattern and add a branch hint? -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] GSoC 2011 - Interest

2011-03-21 Thread Michael Hutchinson
editor would be able to re-use some of the code (particularly some of the GUI) from the Gettext addin. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo

Re: [Mono-dev] GSoC 2011 - Documentation Addin

2011-03-21 Thread Michael Hutchinson
of planning/design/research - ideally, such stuff should be done when creating the proposal, so we have a good idea of what you'll be doing. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http

Re: [Mono-dev] PDB native support in C from C# open source project

2011-03-07 Thread Michael Hutchinson
in anonymous delegates and iterators, and inspecting multiple variables with the same name in sub-scopes of a single method. We could then either propagate those features back into the mdb format, or switch to pdb entirely. -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] Git line-ending issues

2011-01-07 Thread Michael Hutchinson
, or revert the file. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Git line-ending issues

2011-01-06 Thread Michael Hutchinson
these attributes? -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Git line-ending issues

2011-01-06 Thread Michael Hutchinson
. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Where should I install my pkg-config files on OS X?

2010-10-19 Thread Michael Hutchinson
On Tue, Oct 19, 2010 at 11:31 AM, Jackson Harper jack...@novell.com wrote: On Mon, 2010-10-18 at 18:04 -0400, Michael Hutchinson wrote: On Mon, Oct 18, 2010 at 10:58 AM, Jackson Harper jack...@novell.com wrote: For libev-sharp I'm trying to follow the developer guidelines for unstable API

Re: [Mono-dev] Where should I install my pkg-config files on OS X?

2010-10-18 Thread Michael Hutchinson
to have its pkgconfig look there too. I've added similar directories for MSBuild extensions and MonoDoc docs called xbuild and monodoc, unsurprisingly. A gac would probably be useful too. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list

Re: [Mono-dev] Process SIGSEGV on Mono 2.8p6

2010-10-05 Thread Michael Hutchinson
/579a0ca72b996d11a50ddf6ddb4f67e59995072d http://github.com/mono/mono/commit/3b6f5c33088c53280980218f82168e3cba00a25b -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono

Re: [Mono-dev] IL-based regex engine

2010-09-11 Thread Michael Hutchinson
what path I should take. I would appreciate any help with this. Hi, Unfortunately the ToDo list is out of date - the IL Regex engine exists now, though it has bugs. What kinds of things are you interested in working on? -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] debug embedded mono

2010-08-25 Thread Michael Hutchinson
. This causes the debugger in the Mono runtime to make a TCP connection to an IDE. You can create a simple addin in MonoDevelop to cause it to listen for a debuggee and start a debugging session. For some examples, check the mono-osx list archives. -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] [PATCH] Make mono_dl_register_library into a fallback

2010-07-13 Thread Michael Hutchinson
On Tue, Jul 13, 2010 at 9:51 AM, Paolo Molaro lu...@ximian.com wrote: On 07/02/10 Michael Hutchinson wrote: This interface is not suitable as a fallback mechanism, it would be too cumbersome to use and it's probably not ideal even for its intended purpose. What about a callback registration

Re: [Mono-dev] [PATCH] Make mono_dl_register_library into a fallback

2010-07-12 Thread Michael Hutchinson
On Fri, Jul 2, 2010 at 12:38 PM, Michael Hutchinson m.j.hutchin...@gmail.com wrote: On Fri, Jul 2, 2010 at 6:18 AM, Paolo Molaro lu...@ximian.com wrote: On 07/01/10 Michael Hutchinson wrote: The mono_dl_register_library function can currently be used to register P/Invoke mappings for platforms

Re: [Mono-dev] base call hoisting (error) and MonoDevelop w/Moonlight

2010-07-09 Thread Michael Hutchinson
trunk. It's likely there other issues are knock-on effects - maybe your workaround is returning bad values. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman

Re: [Mono-dev] [PATCH] Make mono_dl_register_library into a fallback

2010-07-02 Thread Michael Hutchinson
On Fri, Jul 2, 2010 at 6:18 AM, Paolo Molaro lu...@ximian.com wrote: On 07/01/10 Michael Hutchinson wrote: The mono_dl_register_library function can currently be used to register P/Invoke mappings for platforms that do not have a dynamic linker. The attached patch makes it also function

Re: [Mono-dev] [PATCH] Extract mono_exception_get_message_string from mono_print_exception

2010-07-02 Thread Michael Hutchinson
On Fri, Jul 2, 2010 at 6:28 AM, Paolo Molaro lu...@ximian.com wrote: On 07/01/10 Michael Hutchinson wrote: The attached patch adds a new mono_exception_get_message_string function to the Mono public API, extracted from mono_print_exception. This makes it possible for embedders easily

Re: [Mono-dev] [PATCH] Extract mono_exception_get_message_string from mono_print_exception

2010-07-02 Thread Michael Hutchinson
On Fri, Jul 2, 2010 at 3:13 PM, Michael Hutchinson m.j.hutchin...@gmail.com wrote: On Fri, Jul 2, 2010 at 6:28 AM, Paolo Molaro lu...@ximian.com wrote: ... Anyway, we can certainly add an helper method, but it should be more general: MonoString *mono_object_to_string (MonoObject *obj

Re: [Mono-dev] [PATCH] Extract mono_exception_get_message_string from mono_print_exception

2010-07-02 Thread Michael Hutchinson
to install mono-error.h. OK to commit now? -- Michael Hutchinson http://mjhutchinson.com mono-print-exception.diff Description: Binary data ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo

[Mono-dev] [PATCH] Extract mono_exception_get_message_string from mono_print_exception

2010-07-01 Thread Michael Hutchinson
? -- Michael Hutchinson http://mjhutchinson.com mono-print-exception.diff Description: Binary data ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] [PATCH] Make mono_dl_register_library into a fallback

2010-07-01 Thread Michael Hutchinson
to embedders. I'll also need to restore mono/utils/mono-embed.h to the public headers in the autotools build (but this patch was created using MSVC on Windows). OK to commit to trunk? -- Michael Hutchinson http://mjhutchinson.com mono-dl-map.diff Description: Binary data

Re: [Mono-dev] [PATCH] Extract mono_exception_get_message_string from mono_print_exception

2010-07-01 Thread Michael Hutchinson
On Thu, Jul 1, 2010 at 3:44 PM, Michael Hutchinson m.j.hutchin...@gmail.com wrote: The attached patch adds a new mono_exception_get_message_string function to the Mono public API, extracted from mono_print_exception. This makes it possible for embedders easily to convert exceptions to strings

Re: [Mono-dev] [PATCH] Extract mono_exception_get_message_string from mono_print_exception

2010-07-01 Thread Michael Hutchinson
On Thu, Jul 1, 2010 at 8:06 PM, Michael Hutchinson m.j.hutchin...@gmail.com wrote: Also, mono_free, as defined in mono-publib.h, does not seem to exist, so  as an embedder it's currently not possible to free the returned string. Oh, false alarm, it seems the problem is that mono-publib.c isn't

Re: [Mono-dev] Standard name for mcs

2010-06-27 Thread Michael Hutchinson
likely need to install the mcs package (no idea what the package name is though). -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] gstreamer-sharp problems

2010-06-01 Thread Michael Hutchinson
for several years, and only relatively recently was the effort resumed. I would recommend building the latest from source and trying the included samples. http://gstreamer.freedesktop.org/modules/gstreamer-sharp.html -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] Cannot compile monodebugger with mono from svn trunk

2010-05-29 Thread Michael Hutchinson
of monodis) I really don't know much about the MDB addin or whether it can work with multiple target Monos. You could try filing a bug or asking on the MD list. But if you have the soft debugger working, it's much more reliable anyway :) -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] Cannot compile monodebugger with mono from svn trunk

2010-05-28 Thread Michael Hutchinson
you have the menu option Run-Run with-Mono Soft Debugger? -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Cannot compile monodebugger with mono from svn trunk

2010-05-24 Thread Michael Hutchinson
any extra addins. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] mono debugger

2010-05-13 Thread Michael Hutchinson
debugger built into the runtime. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Garbage Collection Issue?

2010-05-13 Thread Michael Hutchinson
and examine the objects that are there, what objects they reference, and what objects reference them. It can also show the difference between heap snapshots. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list

Re: [Mono-dev] MonoDevelop MoonLight debugger

2010-04-20 Thread Michael Hutchinson
, not Silverlight. We don't have any way to access the SL debugger APIs. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] monodevelop from trunk compile error - error CS0006: cannot find metadata file `Mono.Cecil.dll'

2010-02-24 Thread Michael Hutchinson
behaviour http://www.mono-project.com/Parallel_Mono_Environments#BEWARE:_pkgconfig_fallback_behaviour -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono

Re: [Mono-dev] Testing Compatibility

2010-02-21 Thread Michael Hutchinson
or Wine. Unfortunately most C++/CLI is mixed-mode; although it's possible to run C++/CLI in CIL-only mode, that not very common, as managed/native interop is the main reason to use it. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing

Re: [Mono-dev] Language of message errors in monodevelop

2010-02-09 Thread Michael Hutchinson
'CSDataBase.fCancelQuery' (¨falta una directiva using o una referencia de ensamblado?) (CS1061) (CSDataBase) Please file a bug against MonoDevelop.. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list

Re: [Mono-dev] Advice on porting Windows app

2010-02-04 Thread Michael Hutchinson
Moonlight can be used out-of-browser in full trust with access to all framework APIs. You could also use the GTK# Moonlight widget to embed your GUI in a GTK window directly. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list

Re: [Mono-dev] Mono embedded : segfault when jit_cleanup

2009-12-23 Thread Michael Hutchinson
if it is related to Mono or server ? I'm using Mono 2.4.2.3 (ubuntu 9.10 x86 distrib package). Check that you only call mono_jit_init once. Also, the track trace from the segfault would be useful in diagnosing the issue. -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] Is this by design?

2009-12-23 Thread Michael Hutchinson
support MSBuild file links properly, as it ignores the target relative path. This is on my list to fix for MD 2.4. FYI, monodevelop-list would have been a more appropriate place to ask this. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel

Re: [Mono-dev] StyleCop incompatibility

2009-12-10 Thread Michael Hutchinson
in the alphabetical order but does not consider this rule. I would suggest filing this as an enhancement request for MD's C# code style options. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] Announcing the release of Mono 2.4.3

2009-12-09 Thread Michael Hutchinson
not include the mdb addin. I suggest waiting for Mono 2.6 which should be out soon. It has the new soft debugger built in, and MonoDevelop 2.2 also has built-in support for the soft debugger. SDB is much more portable, and works very well on MacOS -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] WaitAny does not consistently return when waiting on more than one WaitHandle

2009-11-25 Thread Michael Hutchinson
it’s worth. FWIW, I've noticed something like this affecting MD on Mac: https://bugzilla.novell.com/show_bug.cgi?id=558273 -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http

Re: [Mono-dev] Mono and the 4.0 profile

2009-11-22 Thread Michael Hutchinson
the effort though. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] [MonoDevelop] feedback and suggestions for GTK#

2009-10-24 Thread Michael Hutchinson
To add to this, another advantage of using naming similar to the GTK+ naming is that it is usually very straightforward to translate GTK+ code, documentation and tutorials to GTK#. Translating Winforms knowledge to GTK# would be hard no matter what naming was used; the naming is a minor issue

Re: [Mono-dev] correct tail call optimization in mono

2009-08-23 Thread Michael Hutchinson
detailed post on this in the past: http://blogs.msdn.com/davbr/pages/tail-call-jit-conditions.aspx I also just found this post detailing changes in .NET 4: http://blogs.msdn.com/clrcodegeneration/archive/2009/05/11/tail-call-improvements-in-net-framework-4.aspx -- Michael Hutchinson http

Re: [Mono-dev] Moving *.Design to package mono-design

2009-08-09 Thread Michael Hutchinson
On Sun, Aug 9, 2009 at 6:30 AM, Ivan Zlatevcont...@i-nz.net wrote: Unfortunately that leaves you with no option of avoiding aspnet pulling winforms through System.Design. :( There's still the option of a mono-web-designtime package... -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] Array and IEnumerable

2009-07-01 Thread Michael Hutchinson
of explanations on the web, so I won't got into details here. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Array and IEnumerable

2009-07-01 Thread Michael Hutchinson
System.Collections.Generic.IEnumeratorSystem.Array ** ERROR:mini-trampolines.c:67:mono_convert_imt_slot_to_vtable_slot: code should no t be reached Can you please construct a minimal test case to reproduce this error and file a bug against the runtime? -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] Array and IEnumerable

2009-06-30 Thread Michael Hutchinson
be solved by generic covariance/contravariance in .NET 4.0. See http://themonkeysgrinder.blogspot.com/2009/02/c-4-is-now.html for some explanations. However, since System.Generic.Collections.ListT both accepts and returns objects of type T, I don't believe it could be made variant. -- Michael Hutchinson

Re: [Mono-dev] monodev and debugging on mac os x ( linux as well)

2009-05-14 Thread Michael Hutchinson
(gdb and mdb) ... then the debugger options will be available on the monodevelop IDE. The Mono debugger only works on Linux x86/x86_64 at this time. There are porting efforts underway for Windows and Mac, but no ETA yet. -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] Usage of construct properties in a wrapped GObject library

2009-04-27 Thread Michael Hutchinson
constructors into the C# wrapper. http://mono-project.com/GAPI#.custom_files -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] [MonoDevelop] Announcing Unofficial Fedora 10 mono/monodevelop packages

2009-04-21 Thread Michael Hutchinson
:-) -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] [BUG] Unhandled Exception; object reference not set to an instance of an object....

2009-04-19 Thread Michael Hutchinson
();                 if (input.StartsWith(/)) { MD does not support terminal input, thus your input string will be null. You must run apps depending on Console.Read* outside MD. Note that there's a run in external console option in the project options in MD. -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] VB code completion

2009-03-29 Thread Michael Hutchinson
It will be implemented when someone contributes it - the MD team already has more than enough other work planned to fill the foreseeable future. On Mar 29, 2009 12:04 PM, Chris LaFond claf...@prowestgis.com wrote: Anyone know when VB .net code completion is slatted to be implemented in

Re: [Mono-dev] Unhandled Exception: System.Resources.MissingManifestResourceException:

2009-03-23 Thread Michael Hutchinson
before, you can use the same binaries you built on Windows. Alternatively you can convert your solution to a VS2005/2008 solution, which is the project format also used by MonoDevelop 2. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list

Re: [Mono-dev] Where does System.Collections.Generic.HashSet hide?

2009-03-22 Thread Michael Hutchinson
System.Core.dll On Mar 22, 2009 11:57 AM, LCID Fire lcid-f...@gmx.net wrote: Could anyone tell me where to find the HashSet class? I cannot find it in the libraries on my ubuntu machine and neither in svn trunk. ___ Mono-devel-list mailing list

Re: [Mono-dev] Using Mono on Windows to use .NET 3.0+ classes

2009-03-14 Thread Michael Hutchinson
) - C:\Documents and Settings\Thomas\Mes documents\SharpDevelop Projects\test\MainForm.cs:14,14 What am I missing? Importing a namespace with a using statement is very different from adding a reference. Use the context menu on the References folder in the project to reference the dll. -- Michael

Re: [Mono-dev] inherited event

2009-02-25 Thread Michael Hutchinson
. http://msdn.microsoft.com/en-us/library/hy3sefw3.aspx The protected virtual On{Event} invoker pattern is useful because it allows derived classes to handle the event with an override, and control the emission of the event. -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] Mono Develop native menus on Mac OS X

2009-02-22 Thread Michael Hutchinson
On Sun, Feb 22, 2009 at 9:53 AM, Andreas Färber andreas.faer...@web.de wrote: Am 20.02.2009 um 01:12 schrieb Michael Hutchinson: [...] * menu item sensitivity is not respected, so items are always sensitive even when they cannot be used IIUC, this is standard Mac behavior, not a major issue

Re: [Mono-dev] Mono Develop native menus on Mac OS X

2009-02-19 Thread Michael Hutchinson
a command handler to every single text entry widget, which would be extremely messy. This needs to be handled by the Mac GTK. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http

Re: [Mono-dev] Mono Develop native menus on Mac OS X

2009-02-19 Thread Michael Hutchinson
that I've disabled my changes. IMO we need to generate the menus from the command tree completely differently for Mac. If someone would like to volunteer, I'll tell them how... It might even be viable to do it with Cocoa#. -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] Mono Develop native menus on Mac OS X

2009-02-19 Thread Michael Hutchinson
for everything in the File, Edit, etc menus, too. The Mac Gdk key mappings are really odd, so it's impossible to bind Command cleanly right now. I'm taking a look at fixing this, but it might require changes to the Mac Gdk. -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] idea summary: Swing in Mono?...

2009-02-07 Thread Michael Hutchinson
/forums/viewtopic.php?t=46348 snip oddly, I can't seem to find any evidence of there being OpenGL bindings in mono, hmm... There are two available that I'm aware of: Tao and OpenTK. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list

Re: [Mono-dev] Coolite 0.7 CssClassPropertyAttribute

2009-01-06 Thread Michael Hutchinson
, a month after Mono branched for 2.0. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] MD not packaging binaries correctly though it could be mono at fault

2008-11-30 Thread Michael Hutchinson
before 1.9.1 anyway). VS uses the parent directory as a namespace for the resource by default. Note that even in MD 1.0, you can override the resource name using the property pad. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing

Re: [Mono-dev] xbuild

2008-11-13 Thread Michael Hutchinson
of MD installed. There some threads in monodevelop-list that explain more about how and why we are doing this. Hope I didn't confuse things and this message can be of some help, It was mostly right :-) -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] xbuild

2008-11-07 Thread Michael Hutchinson
answer these xbuild questions better than I can... -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] What is the state of mono interpreter ?

2008-09-29 Thread Michael Hutchinson
Framework... http://en.wikipedia.org/wiki/.NET_Micro_Framework -- runs in 300kb, 70 classes, 420 methods, doesn't need an OS or a MMU... -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http

Re: [Mono-dev] How to: Run tar command from c# app

2008-09-25 Thread Michael Hutchinson
list archives. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Question about JIT performance

2008-08-14 Thread Michael Hutchinson
per loop iteration on a Core 2 in 64-bit mode.) -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Source for mono(ICSharpCode.NRefactory)?

2008-08-10 Thread Michael Hutchinson
is the official version. Depending on what you need it for, MCS might be better. MD is switching to mcs for C# parsing. What's the use-case? -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] [MonoDevelop] Some questions about the debugger/debugger add-in

2008-07-16 Thread Michael Hutchinson
displays oddly. We've had similar issues with they keybinding addin before, and I have a local patch for this that I'll commit on Friday. (sorry, your other questions are outside my area) -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list

Re: [Mono-dev] Catch keys outside the Window?

2008-06-28 Thread Michael Hutchinson
about the license as long as you keep it in a separate library. Note that it's P/Invoking libtomboy (http://svn.gnome.org/viewvc/tomboy/trunk/libtomboy/) so you'd need to use that too. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list

Re: [Mono-dev] system.diagnostics (tracesource/traceeventtype) support in mono

2008-06-28 Thread Michael Hutchinson
it was introduced ? what features are present in a specific mono version ? .. http://www.mono-project.com/Class_Status has the current status. You can find the release notes (which list important changes) here: http://www.mono-project.com/OldReleases -- Michael Hutchinson http://mjhutchinson.com

Re: [Mono-dev] [PATCH] Small fix for CSharpCodegenerator

2008-06-20 Thread Michael Hutchinson
:) Those options looks like a neat way to keep a CodeDOM interface while implementing other features that we might like, such as other formatting options (Mono coding style). I also wonder if we could hack in a way to generate explicit event implementations -- Michael Hutchinson http

Re: [Mono-dev] [PATCH] Small fix for CSharpCodegenerator

2008-06-19 Thread Michael Hutchinson
# CodeDOM generator fork in our tree, as we do for VB.NET. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] excute linux command under mono C#

2008-06-10 Thread Michael Hutchinson
+ ' -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] gstreamer-sharp Question

2008-05-06 Thread Michael Hutchinson
it also used a C library to implement the core editing features. Sadly the website seems to be down right now, but I suspect other people on this list can direct you to mirrors. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list

Re: [Mono-dev] gstreamer-sharp Question

2008-05-06 Thread Michael Hutchinson
On Tue, May 6, 2008 at 3:06 AM, Michael Hutchinson [EMAIL PROTECTED] wrote: ... I'd suggest taking a look at resurrecting Diva, a Mono based nonlinear video editing app which was widely praised, but stalled a while ago from lack of contibutions. AFAIK it also used a C library to implement

Re: [Mono-dev] gstreamer-sharp Question

2008-05-06 Thread Michael Hutchinson
GStreamer# binding will be more useful than Mono.Media. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] gstreamer-sharp Question

2008-05-06 Thread Michael Hutchinson
On Tue, May 6, 2008 at 2:25 PM, stapostol [EMAIL PROTECTED] wrote: Michael Hutchinson wrote: (b) the are no applications that want to consume it -- people have suggested Banshee, but it has no problems with its GStreamer/C player engine, and you'd need to present a very solid case

Re: [Mono-dev] Gtk# 2.8.4 runtime for windows?

2008-04-16 Thread Michael Hutchinson
with 2.8. E.g. http://anonsvn.mono-project.com/viewcvs/trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/MonoDevelop.Core.Gui/GLibLogging.cs?view=markup (that also has some other cool GTK.GDK/GLib logging stuff for generating managed traces when they emit warnings and criticals) -- Michael

Re: [Mono-dev] Mono on wine redux

2008-04-09 Thread Michael Hutchinson
.net runtimes onto Wine. Eventually, though, we'd Actually, only managed C++ produces mixed mode assemblies, and only if it's not running in pure mode. Today, Mono can directly run a very large subset of .NET apps that were built on Windows with no or very few modifications. -- Michael

Re: [Mono-dev] [MonoDevelop] Soc 2008 idea: Universal graphical Framwork

2008-03-27 Thread Michael Hutchinson
designers (class visualiser, database designer, workflow designer etc) could certainly share a canvas, ideally based on Moonlight, and a student has already been discussing this with us. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing

Re: [Mono-dev] [MonoDevelop] Typed dataset issue

2008-02-24 Thread Michael Hutchinson
and don't care too much about maintaining the generated code, you could bring the generated files over too and add them to the project directly. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] I18n and ASP.Net (Rolando Martíne z)

2008-02-07 Thread Michael Hutchinson
also need a scanner for find extracting translatable strings, but MonoDevelop's gettext scanner could do that with a couple of regexes. FWIW, the ASP.NET quickstart page claims that the localisation model in 2.0 can be swapped out, but there doesn't seem to be much info on this. -- Michael

Re: [Mono-dev] gmcs crashing

2008-02-06 Thread Michael Hutchinson
environments. Are the properly separated? See http://www.mono-project.com/Parallel_Mono_Environments for info on the various env vars. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http

Re: [Mono-dev] Multiply-defined symbols with F#

2008-02-06 Thread Michael Hutchinson
argument to the gmcs compiler. -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] App using gecko-sharp won't start.

2008-01-30 Thread Michael Hutchinson
certainly does this, which would propagate to child apps (e.g. when you run your app from within MD). -- Michael Hutchinson http://mjhutchinson.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono

  1   2   >