Team Development with ASP.NET Multiple Projects
Friday, March 04 2005 0 Comments
I thought I'd share my little setup with the world. I have been googling my ass off trying to find out the best way to do what I need done, but I haven't had much luck.
Basically here was my problem:
I recieve a (stupid) suggestion from a website to add each project as a reference in the main project -- well this caused all 10 projects to be built each time I compiled... yuck.
Finally, after a few problems of not being able to debug certain dll's, I started at the solution again.Jason Olson recommended I try editing the project file directly with notepad. DAMNIT why didn't I think of this in the first place?!?! It worked like a charm!I'm not sure why Visual Studio compained about the output folder in the first place.In any case, I have been so used to just building all of the projects each time I wanted to compile, that it feels like the build speed is lightning fast!
Basically here was my problem:
- Multiple Developers accessing the solution -- need multiple projects (this was before source control -- yuck).
- Different components in VB.NET / C# (can't combine languages until 2.0)
- the previous code used single file aspx pages...(double yuck)
- need to maintain common directory structure as on live server
I recieve a (stupid) suggestion from a website to add each project as a reference in the main project -- well this caused all 10 projects to be built each time I compiled... yuck.
Finally, after a few problems of not being able to debug certain dll's, I started at the solution again.Jason Olson recommended I try editing the project file directly with notepad. DAMNIT why didn't I think of this in the first place?!?! It worked like a charm!I'm not sure why Visual Studio compained about the output folder in the first place.In any case, I have been so used to just building all of the projects each time I wanted to compile, that it feels like the build speed is lightning fast!

