Normal
OK, I think I found the problem. Actually there are 2 problems I think.Problem 1: The .csproj files have absolute paths in them. For example the GUIMusic.csproj file has:HintPath = "..\..\..\WINDOWS\Microsoft.NET\Managed DirectX\v9.00.0900\Microsoft.DirectX.dll"which is the place where C# Builder is searching for the component. So it seems that C# Builder is using that information to resolve the references. Since I have my workingcopy located on the D: it ends up in the wrong place.Problem 2:In the .csproj files some references point to HintPath = "C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\System.Data.dll" which on my system does not have the requested files. On my system I DO have the files in the C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322 folder (note the difference in versionnumber). Do I have a wrong version of .NET installed? I only installed it a week ago.
OK, I think I found the problem. Actually there are 2 problems I think.
Problem 1:
The .csproj files have absolute paths in them. For example the GUIMusic.csproj file has:
HintPath = "..\..\..\WINDOWS\Microsoft.NET\Managed DirectX\v9.00.0900\Microsoft.DirectX.dll"
which is the place where C# Builder is searching for the component. So it seems that C# Builder is using that information to resolve the references. Since I have my workingcopy located on the D: it ends up in the wrong place.
Problem 2:
In the .csproj files some references point to HintPath = "C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\System.Data.dll" which on my system does not have the requested files. On my system I DO have the files in the C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322 folder (note the difference in versionnumber). Do I have a wrong version of .NET installed? I only installed it a week ago.