Reputation:
Good morning!
We have a SVN-Repository, which holds a VS-Solution. In this solution are many web-projects and each of them is using a JavaScript-Lib which is atm developed in an extra project (let's call it DemoWeb
) and deployed manually to the other Web-Projects.
This construct has many disadvantages:
I think that the scenario (many Projects using the same Libs - eg. JavaScript, .dll-files, Images, ...) is very common, so I ask you:
How do you deal with it?
How do you get rid of this disadvantages?
How do you don't loose the references for IntelliSense in VS (eg. CssClass-Checking)?
Upvotes: 0
Views: 91
Reputation: 725
Upvotes: 1
Reputation: 7451
Automate your build and/or deployment routines. Look into continuous integration. Deploying your application should take one step. (a click on a link, execution of a script, etc...) Anything more than that and you are asking to screw up.
Upvotes: 3