vote up 0 vote down star
1

Is there a way to use boo in my msvs? I would like my form to call some boo code instead of C#.

flag

38% accept rate

4 Answers

vote up 3 vote down

I'm using Boo to replace an old database-driven clunky rules engine, and it's working great.

Start here: Boo Interactive Interpreter

// One-line Boo interpreter in C#
InteractiveInterpreter2 interpreter = new InteractiveInterpreter2();

If you mean defining your forms and actually coding Boo in VS .NET, look into BooLangStudio.

link|flag
vote up 1 vote down

If by msvs you mean visual studio, you would have to write a language plugin for boo (assuming one does not exist) using the Visual Studio Extendability framework.

Here is such a plugin :

http://www.codinginstinct.com/2008/05/boo-in-visual-studio.html

link|flag
vote up 0 vote down

We've been working on a plug-in for a while, it sorta works but you should really use SharpDevelop or MonoDevelop at this point. The VS plugin might get revitalized since the new VS plugin architecture for VS2010 is so much better but it's really a lot of work and we have all been pretty busy.

link|flag
vote up 0 vote down

You can have your Boo script pop-up a source-readable VS debugger by inserting:

System.Diagnostics.Debugger.Launch()

or

System.Diagnostics.Debugger.Break()
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.