Today I have faced this problem when try to open a VS2010 project which is covert from VS2008 project. FYI:This project was built by another developer.
After conversion open the solution it gave me the following error,"The project type is not supported by this installation"
Possible Cause:It may possible that lack some advanced frameworks like newer versions of Windows Mobile SDK, but IIRC error message in such case is different.Or may be some updated packages required Or Visual studio version is not matched with your one(VS2008 Express, Standart, Pro or Team System/ VS2010 Professional, Premium or Ultimate)
After search on net I have found several solution, now these solutions are share with you.
Solution 1:(this is worked for me)
Open the Project.csproj file with any editor like notepad or notepad++,
Delete whatever you found between <ProjectTypeGuids></ProjectTypeGuids>
Solution 2:
Open a new cmd prompt with admin privilege.
Type “devenv / setup” and then run(takes a while without any visual activity).
Solution 3:
Open a new cmd prompt with admin privilege.
Type “devenv /ResetSkipPkgs” and then run(takes a while without any visual activity).
Useful Tips
This tips is not this error specific. But hope that helpful for others. Sometimes we can't open our web project using solution. One of the main reason is that this web project is configured for IISUSER only. So to open this type of project:
1.Open the web.config file
2.Find the <IISUSER></IISUSER>
3. Make it False=> <IISUSER>False</IISUSER>
Now hopefully you web project is open by solution.
Sharing real-world experiences about C#, Dynamics CRM, Dynamics 365, Dynamics NAV/Business Central, SharePoint,PowerBI,ASP.net and more...
Subscribe to:
Post Comments (Atom)
Method 'StartWorkflowOnListItem' in type 'Microsoft.SharePoint.WorkflowServices.FabricWorkflowInstanceProvider'
Exception: Method 'StartWorkflowOnListItem' in type 'Microsoft.SharePoint.WorkflowServices.FabricWorkflowInstanceProvider'...
-
It is very common questions for new web developer how to get the client's country location to track the user.In various forum I have f...
-
There are various ways to use Single Sign on(SSO) in asp.net web application. We can use cookies, session (state server), SAML and web serv...
-
Problem: In my recent application development I have faced a strange problem to show modal background with page loading progress. I had tri...
3 comments:
Solution 1 worked for me too, thanks :)
Welcome..its my pleasure :D
Solution 2 worked for me :D Thanks yaar
Post a Comment