working with Visual Studio, you may come across an error like this:
Failed to update Service Reference XX. Error: The components required to listed web references are not installed on this computer. Please re-install Visual Studio.
how to fix this problem without having to reinstall everything (lost half a day)?
is to help the old Command Prompt (DOS).
The first thing to do is to find the executable for Visual Studio (devenv.exe) and run it from the command line with /? ( devenv /? ). By doing so you receive outputs a list of parameters that can be used.
Failed to update Service Reference XX. Error: The components required to listed web references are not installed on this computer. Please re-install Visual Studio.
how to fix this problem without having to reinstall everything (lost half a day)?
is to help the old Command Prompt (DOS).
The first thing to do is to find the executable for Visual Studio (devenv.exe) and run it from the command line with /? ( devenv /? ). By doing so you receive outputs a list of parameters that can be used.
- Build : Builds the solution or project with the specified solution configuration. For example "Debug". If multiple platforms are possible, the configuration name must be enclosed in quotes and contain platform name. For example: "Debug LCID
- : Sets the default language in the IDE for the UI. Log
- : Logs IDE activity to the specified file for troubleshooting. NoVSIP
- : Disables the VSIP developer's license key for VSIP testing. Out
- : Appends the build log to a specified file. Project
- : Specifies the project to build, clean, or deploy. Must be used with Build , Rebuild
- , Clean , or Deploy
- . ProjectConfig
- : Overrides the project configuration specified in the solution configuration. For example "Debug". If multiple platforms are possible, the configuration name must be enclosed in quotes and contain platform name. For example: "Debug solution then closes the IDE. / SafeMode:
- Launches the IDE in safe mode loading minimal windows. / Upgrade: Upgrades the project or the solution and all projects in it. A backup of These files will be created as appropriate. parameters used to do in order to restore the optimal configuration are just resetsettings or ResetSkipPkgs . This allows you to reset the settings del'IDE. avoiding a repetition of the error.
- In conclusion, just run from the command line devenv /
- ResetSkipPkgs
- or
- devenv / ResetSkipPkgs
- and the problem is solved.
0 comments:
Post a Comment