Posts

Showing posts from March, 2018

How to solve Xamarin intellisense problem in Visual Studio?

Image
Hello guys, today we will learn about how to solve the intellisense problem in visual studio.After the recent update of Xamarin in which PCL projects are updated into the .netStandard framework projects,most of the users are getting problem in intellisense especially in the Xaml files. In order to solve this problem you just have to follow the simple steps which are mentioned below: > Right click on the .netStandard project and unload the project.                                                     > Select the Edit (yourprojectname).csproj file.  > Comment all the code which contains  Condition=" '$(EnableDefaultCompileItems)' > Save the file and Reload the project. > Rebuild the solution and everything works like charm. Note: If there is problem while rebuilding or the intellisense still not working than just restart the visual studio and clean all the projects and try rebuild again.