473,320 Members | 1,707 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Huge project - long build time

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?

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk
Jul 21 '05 #1
15 2295
Hi,

Try http://www.codeproject.com/macro/fastsolutionbuild.asp

Never used it myself, but it's supposed to greatly improve depedency
checking time.

Steve

"cody" <no****************@gmx.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
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?

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk

Jul 21 '05 #2
But this is for C++ only - but we are using C#.

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk
"Steve McLellan" <sjm.NOSPAM AT fixerlabs DOT com> schrieb im Newsbeitrag
news:#b**************@TK2MSFTNGP12.phx.gbl...
Hi,

Try http://www.codeproject.com/macro/fastsolutionbuild.asp

Never used it myself, but it's supposed to greatly improve depedency
checking time.

Steve

"cody" <no****************@gmx.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
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?

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk


Jul 21 '05 #3
Additionally it doesn't work. I installed it and it didn't show up in visual
studio macros. I also tried regsrv32 register it manually and it also didn't
show up in visual studio.

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk
"Steve McLellan" <sjm.NOSPAM AT fixerlabs DOT com> schrieb im Newsbeitrag
news:#b**************@TK2MSFTNGP12.phx.gbl...
Hi,

Try http://www.codeproject.com/macro/fastsolutionbuild.asp

Never used it myself, but it's supposed to greatly improve depedency
checking time.

Steve

"cody" <no****************@gmx.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
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?

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk


Jul 21 '05 #4
Hi Cody

Are you working on all 50 projects at the same time? If not, I would
personally build those projects that you are not changing and then remove
them from the solution, referring just to the dll where necessary. You could
perhaps reduce your solution to only ten projects, which would obviously
build a lot more quickly.

HTH

Charles
"cody" <no****************@gmx.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
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?

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk

Jul 21 '05 #5
> Are you working on all 50 projects at the same time? If not, I would
personally build those projects that you are not changing and then remove
them from the solution, referring just to the dll where necessary. You could perhaps reduce your solution to only ten projects, which would obviously
build a lot more quickly.


It was my suggestion to only use one project at the same time but then in
case of a complete rebuild I have to take care of the build order manually
and that can be very very tricky.

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk
Jul 21 '05 #6
Hi Cody,

Try creating two seperate solutions. One is your working solution where you
just pull in the projects you are working on. The other solution is your
full build solution that has all the projects in it. Never tried that but
it might work. Good luck! Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"cody" <no****************@gmx.net> wrote in message
news:eh****************@TK2MSFTNGP15.phx.gbl...
Are you working on all 50 projects at the same time? If not, I would
personally build those projects that you are not changing and then remove them from the solution, referring just to the dll where necessary. You

could
perhaps reduce your solution to only ten projects, which would obviously
build a lot more quickly.


It was my suggestion to only use one project at the same time but then in
case of a complete rebuild I have to take care of the build order manually
and that can be very very tricky.

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk

Jul 21 '05 #7
> Try creating two seperate solutions. One is your working solution where
you
just pull in the projects you are working on. The other solution is your
full build solution that has all the projects in it. Never tried that but
it might work. Good luck! Ken.

What does that help? The information wheather dll references or project
references are used are stored in each project separately, so if I use one
solution for building the whole stuff I still have to take care of the build
order manually.

I cannot believe that nobody else here has experience with large projects.

--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk
Jul 21 '05 #8
Hi Cody,

You could try to do what I do. My current web app has over 130 seperate
projects and I'm having no problems whatsoever. Here is what I do.

My solution contains what I'm currently working with. For example, right
now it has the web app itself (that is always there), over a dozen web
services and about 20 class libraries that are consumed by the web services.
As I finish web services and class libraries I remove them from my solution.
For every single project in my solution I reference the DLL directly, not
the project. The only time I have a hassle is when I need to go modify a
class library. Sometimes more than one of my web services reference these
libraries and I need to go back and recompile those web services so they all
have the correct version of my DLL. This is really simple though, I just
browse to the web service, load it up, and recompile.

Yes it is a hassle but when you develop large applications you need to
realize that planning and architecture are the most important things. I
know that when I need to go through that hassle it is due to a failure on my
part and not the IDEs problem. I either didn't debug my class well enough,
or I didn't architect it well enough because I had to go back and make
changes. That is my failure and my frustration is due to my mistake. It
sounds like you didn't do any planning and are frequently going back to
modify projects that projects built on top of them rely on. That is just
inefficient and short-sighted on your part. Sit down, map out your
solution, build it from the ground up and you should see things go a lot
more smoothly for you. Good luck! Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"cody" <pl*************************@gmx.de> wrote in message
news:uD**************@TK2MSFTNGP12.phx.gbl...
Try creating two seperate solutions. One is your working solution where you
just pull in the projects you are working on. The other solution is your full build solution that has all the projects in it. Never tried that but it might work. Good luck! Ken.

What does that help? The information wheather dll references or project
references are used are stored in each project separately, so if I use one
solution for building the whole stuff I still have to take care of the

build order manually.

I cannot believe that nobody else here has experience with large projects.

--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk

Jul 21 '05 #9
> It
sounds like you didn't do any planning and are frequently going back to
modify projects that projects built on top of them rely on. That is just
inefficient and short-sighted on your part. Sit down, map out your
solution, build it from the ground up and you should see things go a lot
more smoothly for you. Good luck! Ken.

Yes you aqre completely right, we didn't do any planning at all!
When the project started nobody realized that it would grow so far and would
makes things so complicated. To make things more complicated, most of us are
newbies.
However, your suggestion is similar to what I planned so we will try it and
hope it will work for us,
obviously it works for you :)

Thanks for your suggestion.

--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk
Jul 21 '05 #10
Hi,

What we usually do is make a directory tree with separate solutions that
contain related projects (e.g. a solution with all serial interfaces, a
solution with all data-access functions, ...). All these solutions build to
the same BIN directory (use separate build directories for Release and Debug
versions).

For a complete build, we use batch files.

You can also look in to NAnt (http://nant.sourceforge.net/), which is an
open source build tool for .NET, kind of like the make tools for C++.

Hope this helps,

Budtse
"cody" <no****************@gmx.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
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?

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk

Jul 21 '05 #11
Cody,
In addition to the other comments.
rebuild, I have to manage the build order manually since the compiler
cannot
see which project is dependend from which.
You should be able to use "Project - Project Dependencies" to indicate which
projects depend on which other projects, that will then set the build order.
If you use Project References the Project Dependencies are set
automatically, if you use DLL References, then you can manually create the
dependencies needed...

Hope this helps
Jay
"cody" <no****************@gmx.net> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl... 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?

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk

Jul 21 '05 #12
I now changed all project references into dll references in one central
folder where all assemblies are located.
The problem is if I delete all assemblies and do a complete rebuild I get
compile errors.

The build order is correctly set: for example first project A then B. But it
gives me an error that it cannot compile B because A is missing. But in the
build order it should compile A first but it seems to compile B first. I
cannot see A.dll in output folder and it doesn't output any compile errors
concerning A, only errors stating that it cannot compile B.

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk
"Ken Dopierala Jr." <kd*********@wi.rr.com> schrieb im Newsbeitrag
news:e1**************@tk2msftngp13.phx.gbl...
Hi Cody,

You could try to do what I do. My current web app has over 130 seperate
projects and I'm having no problems whatsoever. Here is what I do.

My solution contains what I'm currently working with. For example, right
now it has the web app itself (that is always there), over a dozen web
services and about 20 class libraries that are consumed by the web services. As I finish web services and class libraries I remove them from my solution. For every single project in my solution I reference the DLL directly, not
the project. The only time I have a hassle is when I need to go modify a
class library. Sometimes more than one of my web services reference these
libraries and I need to go back and recompile those web services so they all have the correct version of my DLL. This is really simple though, I just
browse to the web service, load it up, and recompile.

Yes it is a hassle but when you develop large applications you need to
realize that planning and architecture are the most important things. I
know that when I need to go through that hassle it is due to a failure on my part and not the IDEs problem. I either didn't debug my class well enough, or I didn't architect it well enough because I had to go back and make
changes. That is my failure and my frustration is due to my mistake. It
sounds like you didn't do any planning and are frequently going back to
modify projects that projects built on top of them rely on. That is just
inefficient and short-sighted on your part. Sit down, map out your
solution, build it from the ground up and you should see things go a lot
more smoothly for you. Good luck! Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"cody" <pl*************************@gmx.de> wrote in message
news:uD**************@TK2MSFTNGP12.phx.gbl...
Try creating two seperate solutions. One is your working solution
where
you
just pull in the projects you are working on. The other solution is your full build solution that has all the projects in it. Never tried that but it might work. Good luck! Ken.

What does that help? The information wheather dll references or project
references are used are stored in each project separately, so if I use

one solution for building the whole stuff I still have to take care of the

build
order manually.

I cannot believe that nobody else here has experience with large projects.
--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk


Jul 21 '05 #13
Hi Cody

We too are having terrible speed problems with VS.NET.

Our solution contains 10 VB.NET projects, but they're quite big: the
solution as a whole contains 500K lines of code.

Response time in the VB IDE has long been a problem for us. You can type a
line, press return and it's 30 seconds to a minute before the IDE responds.
And this is on a high-end machine with 2GB RAM! I understand that this is
because the VB compiler recompiles behind the scenes every time you leave a
line, and this behaviour is too tightly bound into the VB IDE to be removed.

It really does make VB.NET unsuitable for enterprise application
development. C# doesn't seem to have the same problem, but unfortunately
VB.NET is a corporate standard here, so we're stuck with it.

But a slow response time isn't our biggest problem: compile speed is.

Until the middle of last week, build times were reasonable and the compiler
seemed to be able to do dependency checking ok. Then, one by one, each
developer on the team started seeing build times lengthen dramatically. It
now takes 20 minutes to rebuild the system.

Also, all concept of dependency checking seems to have been lost. You can
change one line in one project, press the Start Debugging button, and VS
rebuilds the entire solution.

When you build, it takes ages even to start. Then as it does each project,
it says "Building satellite assemblies" and then just waits. I have no idea
what satellite assemblies it might be building.

The best we can do at the moment is do a Get Latest Version in the morning
to get everything out of SourceSafe, then each of us spends 20 minutes doing
a full rebuild. Then we use Configuration Manager to switch the building of
all the projects off except the one each of us is working on.

When any of us is ready to test, they build only the project with their
changes, then use Configuration Manager to switch all projects off before
doing Start Debugging.

Even then, there's a long pause before text appears in the Output window to
say that nothing needed building!

Having searched the 'net I found a suggestion that unplugging your network
cable might help. Tried it but no luck, and in any case we can't debug like
that as we need access to our database server.

As a workround, messing with Configuration Manager isn't ideal, and given
that the projects are a mixture of ASP.NET, web services, business layer and
data layer code, we frequently need to make changes in several projects when
we implement a new use case. Back to a 20 min wait each time.

This really is a serious problem for us and will shortly impact our
deadlines. So if anyone at Microsoft knows what is going on, please could we
have some advice.

thanks

"cody" wrote:
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?

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk

Jul 21 '05 #14
It's been suggested we might have a circular dependency between projects...

....which might explain why each developer hit the problem one by one, i.e.
as each did a Get Latest Version

"Mark Lines-Davies, Guildford, UK" wrote:
Hi Cody

We too are having terrible speed problems with VS.NET.

Our solution contains 10 VB.NET projects, but they're quite big: the
solution as a whole contains 500K lines of code.

Response time in the VB IDE has long been a problem for us. You can type a
line, press return and it's 30 seconds to a minute before the IDE responds.
And this is on a high-end machine with 2GB RAM! I understand that this is
because the VB compiler recompiles behind the scenes every time you leave a
line, and this behaviour is too tightly bound into the VB IDE to be removed.

It really does make VB.NET unsuitable for enterprise application
development. C# doesn't seem to have the same problem, but unfortunately
VB.NET is a corporate standard here, so we're stuck with it.

But a slow response time isn't our biggest problem: compile speed is.

Until the middle of last week, build times were reasonable and the compiler
seemed to be able to do dependency checking ok. Then, one by one, each
developer on the team started seeing build times lengthen dramatically. It
now takes 20 minutes to rebuild the system.

Also, all concept of dependency checking seems to have been lost. You can
change one line in one project, press the Start Debugging button, and VS
rebuilds the entire solution.

When you build, it takes ages even to start. Then as it does each project,
it says "Building satellite assemblies" and then just waits. I have no idea
what satellite assemblies it might be building.

The best we can do at the moment is do a Get Latest Version in the morning
to get everything out of SourceSafe, then each of us spends 20 minutes doing
a full rebuild. Then we use Configuration Manager to switch the building of
all the projects off except the one each of us is working on.

When any of us is ready to test, they build only the project with their
changes, then use Configuration Manager to switch all projects off before
doing Start Debugging.

Even then, there's a long pause before text appears in the Output window to
say that nothing needed building!

Having searched the 'net I found a suggestion that unplugging your network
cable might help. Tried it but no luck, and in any case we can't debug like
that as we need access to our database server.

As a workround, messing with Configuration Manager isn't ideal, and given
that the projects are a mixture of ASP.NET, web services, business layer and
data layer code, we frequently need to make changes in several projects when
we implement a new use case. Back to a 20 min wait each time.

This really is a serious problem for us and will shortly impact our
deadlines. So if anyone at Microsoft knows what is going on, please could we
have some advice.

thanks

"cody" wrote:
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?

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk

Jul 21 '05 #15
Hi Cody

Microsoft confirm that there is a problem when using dll references for
projects within the solution, such that it is not always possible to resolve
dependencies correctly. This can result in compile errors for phantom
errors, and all projects being rebuilt when only one changes. The current
recommendation is to use project references only.

HTH

Charles
"cody" <no****************@gmx.net> wrote in message
news:eV**************@TK2MSFTNGP10.phx.gbl...
I now changed all project references into dll references in one central
folder where all assemblies are located.
The problem is if I delete all assemblies and do a complete rebuild I get
compile errors.

The build order is correctly set: for example first project A then B. But
it
gives me an error that it cannot compile B because A is missing. But in
the
build order it should compile A first but it seems to compile B first. I
cannot see A.dll in output folder and it doesn't output any compile errors
concerning A, only errors stating that it cannot compile B.

--
cody

Freeware Tools, Games and Humour
http://www.deutronium.de.vu || http://www.deutronium.tk
"Ken Dopierala Jr." <kd*********@wi.rr.com> schrieb im Newsbeitrag
news:e1**************@tk2msftngp13.phx.gbl...
Hi Cody,

You could try to do what I do. My current web app has over 130 seperate
projects and I'm having no problems whatsoever. Here is what I do.

My solution contains what I'm currently working with. For example, right
now it has the web app itself (that is always there), over a dozen web
services and about 20 class libraries that are consumed by the web

services.
As I finish web services and class libraries I remove them from my

solution.
For every single project in my solution I reference the DLL directly, not
the project. The only time I have a hassle is when I need to go modify a
class library. Sometimes more than one of my web services reference
these
libraries and I need to go back and recompile those web services so they

all
have the correct version of my DLL. This is really simple though, I just
browse to the web service, load it up, and recompile.

Yes it is a hassle but when you develop large applications you need to
realize that planning and architecture are the most important things. I
know that when I need to go through that hassle it is due to a failure on

my
part and not the IDEs problem. I either didn't debug my class well

enough,
or I didn't architect it well enough because I had to go back and make
changes. That is my failure and my frustration is due to my mistake. It
sounds like you didn't do any planning and are frequently going back to
modify projects that projects built on top of them rely on. That is just
inefficient and short-sighted on your part. Sit down, map out your
solution, build it from the ground up and you should see things go a lot
more smoothly for you. Good luck! Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight
If you sign up under me and need help, email me.

"cody" <pl*************************@gmx.de> wrote in message
news:uD**************@TK2MSFTNGP12.phx.gbl...
> > Try creating two seperate solutions. One is your working solution where > you
> > just pull in the projects you are working on. The other solution is

your
> > full build solution that has all the projects in it. Never tried
> > that

but
> > it might work. Good luck! Ken.
>
>
> What does that help? The information wheather dll references or project
> references are used are stored in each project separately, so if I use one > solution for building the whole stuff I still have to take care of the

build
> order manually.
>
> I cannot believe that nobody else here has experience with large projects. >
> --
> cody
>
> [Freeware, Games and Humor]
> www.deutronium.de.vu || www.deutronium.tk
>
>



Jul 21 '05 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

23
by: cody | last post by:
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...
0
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.