C
cody
We have a huge project, the solutuion spans 50 projects growing. Everytime I
want to start the project I have to wait nearly over 1 minute for the
compiler to complete building. This is unaccaptable.
I thought about loading only the project I need into visual studio and not
the whole solution. The problem is that the compiler tells me it cannot find
the referenced dlls (project references) although they are all lying in
their bin and obj folders.
To get around that problem I have the idea that I could replace the project
references with dll references.
But this would introduce more problems: When I have to make a complete
rebuild, I have to manage the build order manually since the compiler cannot
see which project is dependend from which.
Thr second thing is what is if I switch from debug to release build? Do I
have to change all paths from all referenced dlls from .\debug to .\release?
Would it work this way or is there another/better solution?
want to start the project I have to wait nearly over 1 minute for the
compiler to complete building. This is unaccaptable.
I thought about loading only the project I need into visual studio and not
the whole solution. The problem is that the compiler tells me it cannot find
the referenced dlls (project references) although they are all lying in
their bin and obj folders.
To get around that problem I have the idea that I could replace the project
references with dll references.
But this would introduce more problems: When I have to make a complete
rebuild, I have to manage the build order manually since the compiler cannot
see which project is dependend from which.
Thr second thing is what is if I switch from debug to release build? Do I
have to change all paths from all referenced dlls from .\debug to .\release?
Would it work this way or is there another/better solution?