Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I tell which version of monotouch I have installed?

How do I tell which version of monotouch I have installed?

like image 602
basarat Avatar asked Jul 15 '12 14:07

basarat


People also ask

What version of Xamarin forms do I have?

You can find the version of your Xamarin plug-ins for Visual Studio by going to "Help" -> "About Microsoft Visual Studio" in VS, and scrolling down to the Xamarin plug-ins.

What version of Xamarin iOS am I using?

2, you could check the version of Xamarin. ios by running your Visual Studio > Help > About Microsoft Visual Studio > Installed products. If the answer is helpful, please click "Accept Answer" and upvote it.

How do I find Xamarin forms in Visual Studio Mac?

The simplest way is to open Visual Studio for Mac and use the About Visual Studio for Mac > Show Details menu. That will list all versions of Xamarin tooling installed.


1 Answers

There's several ways to get the version number.

From the terminal you can do:

$ /Developer/MonoTouch/usr/bin/mtouch --version
mtouch 5.3.5.1340204820

or

$ cat /Developer/MonoTouch/Version 
5.3.5

Also from MonoDevelop you can do About MonoDevelop then select Version Information and this will give you (a lot of data, including MonoTouch version)

...
Monotouch: 5.3.5
...
like image 87
poupou Avatar answered Sep 28 '22 17:09

poupou