basarat
basarat

Reputation: 275819

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

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

Upvotes: 11

Views: 2315

Answers (1)

poupou
poupou

Reputation: 43553

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
...

Upvotes: 10

Related Questions