> I have a strange issue. I'm pretty sure it's just some strage
> configuration issue. I have a solution with a couple CLI projects,
[quoted text clipped - 7 lines]
> CLI project, and a c# library. These are what it loads. Anyone have
> any ideas?
I suspect that your build order is wrong.
As a result, proj A wich requires the output of proj B gets built first.
Because B does not yet exist, the build breaks.
then proj B is built.
if you build again the error will disappear because now B already exists.
You can check this if you right-click your solution and then select build
order, or project dependencies.

Signature
Kind regards,
Bruno van Dooren
bruno_nos_pam_van_dooren@hotmail.com
Remove only "_nos_pam"
DaTurk - 22 Feb 2007 16:53 GMT
On Feb 22, 9:49 am, "Bruno van Dooren [MVP VC++]"
<bruno_nos_pam_van_doo...@hotmail.com> wrote:
> > I have a strange issue. I'm pretty sure it's just some strage
> > configuration issue. I have a solution with a couple CLI projects,
[quoted text clipped - 24 lines]
> bruno_nos_pam_van_doo...@hotmail.com
> Remove only "_nos_pam"
I believe that was the problem! Thank you