OK, Mono 3.2.1 is available through the (slightly hidden) Mono:Factory
repo:
http://download.opensuse.org/repositories/Mono:/Factory/openSUSE_Factory/

This, however is not enough: If the app was originally built against an
older Mono version, you have to create a config file and put it into the
same folder the EXE of your app already lies in:

 <configuration>
  <startup>
    <supportedRuntime version="v4.0" /> 
  </startup>
</configuration>

Background: The latest webkit-sharp version seems to be compiled
against .NET 4.0. If you don't force your app to run against .NET 4.0,
the Mono runtine might switch back to 2.0, so webkit-sharp would run on
a deprecated runtime version and crash.

If Mono warns you about a runtime version your app does not support,
something will be wrong with the abovementioned config.

Kind regards
Jacek Rużyczka


_______________________________________________
Gtk-sharp-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list

Reply via email to