This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.
Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.
Before posting questions here you might want to review the developer documentation.
Hi,
Im using mojo to build applications that are integrated with an Enterprise Resource Planning (ERP), and to do that i´ve create 3-tier application for mojo solution and an WCF Service solution for syncronization data. My business Project (mojoSolution Project) has references of mojo like (mojoportal.web, mojoportal.web.framework and mojoportal.business). This project needs to be shared with mojosolution and my ERP Solution, to share DataContracts for syncronization services, but all my ERP has aasembly assigned with strong names. And to use my Business dll (mojoProject) i need to add a strong name to dll's of mojo.
Theres any solution to resolve this without changing the dll's of mojo and share my bussiness.dll on this solutions?
thanks
you'll have to compile the mojoPortal source code yourself and sign it with your own strong name key
Hope that helps,
Joe
I don´t do that because I thought had legal issues in changing mojo dlls and i found that:
Sample:
ildasm SomeAssembly.dll /out:SomeAssembly.il
ren SomeAssembly.dll SomeAssembly.dll.orig
ilasm SomeAssembly.il /dll /key= keyPair.snk
and with this i only need to change the strong name to my business dll
thanks for the help joe
cheers