I’ve created a deployment project which works rather well and now I want to add it to source control repository for others to use.
The main problem I’m facing is that the .prj file which deploytool creates contains absolute paths which will not work on other computers. I have already installed MCR and I can create the .exe file but it can be used on my computer only. How can I make the project can be used with other computer also??
Normally you should be able to package your executable for distribution. You then need to have all users have the path to the proper MCR libraries and to your executable and they should be able to use it.
We do this in my company and here is how it works:
We’ve been using this for the past 3 years without problem. The executables are compiled on a separate machine and simply moved to the network share as is. No path problems.
Hope this helps