MudassarRasool / mb-unit

Automatically exported from code.google.com/p/mb-unit
0 stars 0 forks source link

All.sln compilation errors in VS2008 #825

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Get latest code from SVN.
2. Open All.sln in VS2008.
3. Build all.

What is the expected output? What do you see instead?

Compilation causes the following errors and warnings:

Warning 1   Gallio.Ambience.Server  Found conflicts between different versions of 
the same dependent assembly.
Error   2   Gallio.VisualStudio.Tip90   The referenced assembly 
"C:\...\gallio\trunk\v3\src\SDK\Loader\bin\Gallio.Loader.dll" was not found. If 
this assembly is produced by another one of your projects, please make sure to 
build that project before building this one.
Warning 3       The referenced component 'Gallio.Loader' could not be found. 
Error   4   Gallio.VisualStudio.Sail90  The referenced assembly 
"C:\...\gallio\trunk\v3\src\SDK\Loader\bin\Gallio.Loader.dll" was not found. If 
this assembly is produced by another one of your projects, please make sure to 
build that project before building this one.
Warning 5       The referenced component 'Gallio.Loader' could not be found. 

Please use labels and text to provide additional information.

compilation errors

Original issue reported on code.google.com by justin.w...@gmail.com on 3 Mar 2011 at 12:24

GoogleCodeExporter commented 8 years ago
Correction:

The above steps to reproduce result in these 5 compilation warnings:

Warning 1   Gallio.Ambience.Server  Found conflicts between different versions of 
the same dependent assembly.
Warning 2   Gallio.VisualStudio.Sail90  The referenced project 
'..\..\..\Gallio\Gallio.Loader\Gallio.Loader.csproj' does not exist.
Warning 3       The referenced component 'Gallio.Loader' could not be found. 
Warning 4   Gallio.VisualStudio.Tip90   The referenced project 
'..\..\..\Gallio\Gallio.Loader\Gallio.Loader.csproj' does not exist.
Warning 5       The referenced component 'Gallio.Loader' could not be found. 

Warnings #2-#5 seem to be related to the fact that the 2 aforementioned csproj 
files have a project reference to Gallio.Loader that points to the wrong folder 
location (..\..\..\Gallio\Gallio.Loader\Gallio.Loader.csproj). However, 
changing those references to reference Gallio.Loader at 
"..\..\..\SDK\Loader\Gallio.Loader.csproj" resulted in different set of 
compilation warnings and errors:

Warning 1   Gallio.Ambience.Server  Found conflicts between different versions of 
the same dependent assembly.
Error   2   Gallio.VisualStudio.Tip90   The referenced assembly 
"C:\...\gallio\trunk\v3\src\SDK\Loader\bin\Gallio.Loader.dll" was not found. If 
this assembly is produced by another one of your projects, please make sure to 
build that project before building this one.
Warning 3       The referenced component 'Gallio.Loader' could not be found. 
Error   4   Gallio.VisualStudio.Sail90  The referenced assembly 
"C:\...\gallio\trunk\v3\src\SDK\Loader\bin\Gallio.Loader.dll" was not found. If 
this assembly is produced by another one of your projects, please make sure to 
build that project before building this one.
Warning 5       The referenced component 'Gallio.Loader' could not be found. 

Original comment by justin.w...@gmail.com on 3 Mar 2011 at 12:33