Posts Tagged ‘VS2005’


05.04.2008

Glade

posted by Karsten

in RedGloo

As I'm venturing down into Glade# development I've found this http://www.codeproject.com/KB/cs/GladeCodeChanger.aspx useful tool for C# code generation of .glade files.

It works with vs2005. (This is the first time I've installed something to work with vs2005, and it just worked. So I'm well happy!!) Pat beware!! It probably won't work on your machine then…. 😀

Share
Tags: ,
10.03.2008

VS2008

posted by Karsten

in RedGloo

Why oh why oh why do MS always change solution format, so that you can't open solutions in old VS instantiations? Even solutions that doesn't use any new features…

My VS2005 feels old, very old!

Share
Tags:
05.02.2008

Mono in VS2005 – Celebrations

posted by Karsten

in RedGloo

Mono in VS2003 is a piece of cake, because there is an installer, and a community of users who have shaved all the problems away.

Sadly Mono in VS2005  is not that simple, and has given me considerable aggrevation, but I've now finally got a running add-in in VS2005. Following is an bullet point list of what I did to achieve this milestone:

  1. Have mono installed, thanks P@ 😉
  2. Download vsAddin2005 from http://anonsvn.mono-project.com/viewcvs/trunk/wintools/vsAddIn2005/ (Rob found this library)
  3. Open the solution in VS2005
  4. Open monoaddin.Addin and change the path in <Assembly> to the path you are using
  5. Build everything
  6. Copy all files from BinAndLib to the folder where your assembly is. (The code checks if they arein that folder. This surely most be a bug, because it would be enough to have them in the path.)
  7. You need all files from the folders BinAndLib and reflib somewhere in your path, e.g. system32. (Could also add the folders to the path)
  8. Start VS2005
  9. Go to Tools->option, under environment->Add-in/Macros security add the folder which has monoaddin.Addin
  10. Go to Tools->Addin manager…
  11. tick all the options of the monoaddin
  12. Open a solution and you can celebrate :o)
Share