简体   繁体   中英

Any way to add my C# project as a reference in IronPython / IronRuby?

I know how to reference an existing .dll to IronPython, but is there any way to add my project as a reference like I can between Visual Studio projects?

Or is it best practice to create a separate class library?

You can't add reference to a project since it's a Visual Studio thing.

I suggest that during the development process, call import (IronPython) or require (IronRuby) with the full path of your project assembly like c:\\dev\\MyProject\\bin\\Debug\\MyProject.dll.

I know you can do that using SharpDevelop. Kinda like this:

http://i42.tinypic.com/hwb8z9.gif

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM