Hello Jane, It is a little difficult to answer your question because you don't really give enough detail about what you have and what you want to achieve.
Typically IronPython applications *can't* be packaged as DLLs, but instead run from Python source files. For IronPython 1.1 though, you can use 'Pyc' (a sample available from the codeplex site) that will compile Python source files to assemblies. I *believe* those are actually 'exe' files rather than dlls (I might be wrong) - but they are still assemblies. Those assemblies will be dependent on the IronPython dlls though. See the Pyc sample for examples of how to use it. There is no version of Pyc for IronPython 2 though. All the best, Michael Foord http://www.manning.com/foord jane janet wrote: > > > Hello all, > I'm a student. I wanna know how to do about my project. > I implemented aplication using Ironpython because I have to use .NET > library and c# code but I also have to use this application with > another Python implemented application. My teacher want me to create > DLL file of IronPython implemented application. I don't know how to > begin. Please help me. > Thank you. > All the best. > > ------------------------------------------------------------------------ > Boo! Scare away worms, viruses and so much more! Try Windows Live > OneCare! Try now! > <http://onecare.live.com/standard/en-us/purchase/trial.aspx?s_cid=wl_hotmailnews> > > > ------------------------------------------------------------------------ > > _________________________________________________ > Python.NET mailing list - [EMAIL PROTECTED] > http://mail.python.org/mailman/listinfo/pythondotnet _______________________________________________ Users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
