Category Archives: mac

Visual Studio 2005 on Mac OS X

Utilizing Parallels 3.0 http://www.parallels.com/en/products/desktop/ I am able to run Visual Studio 2005 on my Macbook (Mac OS X). Parallels Coherence makes it seem that I am running Visual Studio right inside my Mac desktop window instead of a separate virtualized … Continue reading

Posted in .net, mac | 2 Comments

Uninstall Mono on Mac OS X

To uninstall Mono on OS X utilize the uninstallMono.sh script. Where is it? How do you get it? Utilize Finder to browse to /Library/Receipts. View the package contents of Contents/Resources/MonoFramework.pkg. Drag a copy of uninstallMono.sh to the desktop. Open a … Continue reading

Posted in mac, mono | 10 Comments

Accessing iTunes With C#

The following example dumps your entire iTunes library to the console. You need to reference the COM iTunes 1.2 Type library. Currently I am running iTunes version 4.7.1.30. using System;namespace PlayListExample{class CMain{[STAThread]static void Main(string[] args){iTunesLib.IiTunes app = null;try{app = new … Continue reading

Posted in .net, mac | Leave a comment