Mono 2.6 and visual studio 10

When I tried to run the binary (exe) file that was created using Visual Studio 10 from mono 2.6 / Mac, I get the following warning.

WARNING: The runtime version supported by this application is unavailable.
Using default runtime: v1.1.4322

How to disable this message using mono? Is there a way from Visual Studio not to show this message using mono / Mac?

+3
source share
1 answer

Mono 2.6.x does not support the version of the .NET 4.0 environment; therefore, it reverts to the standard version of .NET 1.1.

I suggest you install Mono 2.8 , which was released yesterday and which supports 4.0.

VS .NET 2.0/3.0/3.5.

+5

Source: https://habr.com/ru/post/1768246/


All Articles