Last active
January 28, 2019 12:47
-
-
Save gsarkarsavo/f97e799e200221441b9d2bd81fbabca1 to your computer and use it in GitHub Desktop.
vs 2015 project load issue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
METHOD 1 | |
----------------------------------------------------------------------------- | |
Delete contents of these 2 folders | |
C:\Users\%USERNAME%\AppData\Roaming\Microsoft\VisualStudio\ | |
C:\Users\%USERNAME%\AppData\Local\Microsoft\VisualStudio\14.0\ComponentModelCache | |
Then run the VS.NET as admin, otherwise it won't be able to renew the Roaming folder correctly. | |
https://stackoverflow.com/a/38092339/1555746 | |
METHOD 2 | |
------------------------------------------------------------------------------------ | |
- Launch Visual Studio as an administrator using command devenv /resetsettings | |
- Launch Visual Studio as an administrator using command devenv /resetskippkgs | |
METHOD 3 | |
------------------------------------------------------------------------------------ | |
Delete this: | |
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio | |
ERRORS | |
----------------------------------------- | |
The Web Application Project MyProjectWebRole is configured to use IIS. The Web server 'http://127.0.0.1:57693/' could not be found. | |
--------------- | |
D:\abc\server\MyProject.WebRole\MyProjectWebRole.csproj : error : Project 'MyProjectWebRole' could not be opened because the Visual C# 2015 compiler could not be created. 'MyProjectWebRole' is already part of the workspace. | |
------------------------------------------ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment