[MonoDevelop] Crash when trying to compile MD from SVN

John Luke john.luke at gmail.com
Mon Jul 17 16:04:28 EDT 2006


On Mon, 2006-07-17 at 12:03 +0200, Lluis Sanchez wrote:
> The problem is not with mono, but with boo. You need to build boo using
> the 2.0 profile, or use a boo configuration file which sets the 2.0
> runtime for boo. 
> 
> However, we need to find a workaround for this before the next release.
> 

I wonder if it is enough to add a .config file for each boo exe that has
something like this (from NAnt.exe.config):
<configuration>
    <startup>
        <!-- .NET Framework 2.0 -->
        <supportedRuntime version="v2.0.50727" />
        <!-- .NET Framework 2.0 Beta 2 -->
        <supportedRuntime version="v2.0.50215" />
        <!-- .NET Framework 2.0 Beta 1 -->
        <supportedRuntime version="v2.0.40607" />
        <!-- .NET Framework 1.1 -->
        <supportedRuntime version="v1.1.4322" />
        <!-- .NET Framework 1.0 -->
        <supportedRuntime version="v1.0.3705" />
    </startup>
</configuration>

seems to work here



More information about the Monodevelop-list mailing list