Question Compiler has stopped working - multi-project solution

Pete (BSC)

Well-known member
Joined
Oct 19, 2007
Messages
89
Programming Experience
10+
I have a solution that has 11 projects in it. After adding the 11th, when I load the project I get the "Microsoft (R) Visual Basic Compiler has stopped working" error n VS 2008.

It looks like all the projects load, I see them in the solution explorer.

When I remove the 11th project:
VB.NET:
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "BXS.Methods", "BXS.Methods\trunk\src\BXS.Methods.vbproj", "{CCB06475-72D0-4EE1-9141-D10258360F8E}"
EndProject

The project loads, I then add it back in again and all is will until I have to reload the project when double clicking the SLN file. Is there a limit to the # of project?

:confused:

Other information:
OS: Vista 64-bit
The above project is set to compile to x86 (not ANY CPU).
The target framework is 3.5 (as are all the other projects in the solution).
 
Last edited:
Resolved

My project contained a reference:

VB.NET:
 <Reference Include="System.Data.DataSetExtensions">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>

I removed it and the project loads
 
Back
Top