Archive for the ‘.NET development’ Category

Error 28804. Setup cannot connect to the SQL Server 2005 Reporting Services report server…

Thursday, October 2nd, 2008

Getting of this error is possible, when you are installing the Team Foundation Server (TFS) at computer with several active IP addresses, including external IP (if present).To resolve it you have to:

  1. Either disable all but one network adapter, which is your local network adapter, while installing TFS.
  2. Or check what you can access your SQL Server by all IPs (127.0.0.1, 192.168.0.x and external IP too).
  3. Change the IP address of the report server in IIS Manager to match the machine name IP Address.

 and retry the installation.

Web applications debugging in Visual Studio on Vista

Friday, August 1st, 2008

To be able dubugging of web sites in Visual Studio 2005 on Windows Vista just run Visual Studio IDE as administrator as MS suggests :)

Visual Studio: The project file ” has been renamed or is not longer in the solution

Wednesday, February 6th, 2008

Visual Studio error message

Problem:

You have removed a project outside of Visual Studio IDE, but that project was referenced by a Web site(s) included in same solution.
After the VS loading you are removing the absent project from a Solution Explorer.
Then you are trying to build your solution and got the error message shown at the picture:

The project file ” has been renamed or is not longer in the solution

Yes, it is true and you VS here is fully correct :)
But it does not solve the problem.

Solution:

Please look at the Property Pages of your web site(s) and you will see the the following - one (because we are talking about only one removed project) of the items in References tab will be marked as unavailable.
Remove it (click “Remove”), click “OK” and try to build your solution again.
Good luck :) !