VS2015 characters were not loaded for this document

I saw several posts on the same issue. No one solved my problem. I recently downloaded VS2015, I used VS2012. I open the same project in both, 2015 does not load characters, and 2012 does. If I open it in 2012 and build it, and then open it in 2015, it will load the characters until I rebuild it. Does anyone have any ideas?

Another thing that seemed interesting to me. I have a Winforms application in which I was executing the same process and the Winforms application works fine

+6
source share
1 answer

It was a mistake with access to Telerik data. They stopped supporting their visual designer. To fix the problem, you should get updated access to data from the NuGet Telerik.DataAccess package. Installing a new data access should provide you with Q2 2015 libraries. It will also add the package file to your project. You also need to open this and change the line

<UseXmlMapping Condition="'$(UseXmlMapping)'==''">false</UseXmlMapping> to <UseXmlMapping Condition="'$(UseXmlMapping)'==''">true</UseXmlMapping> 

Also add the following code at the end of your property groups and before the element groups

  <PropertyGroup> <UseXmlMapping>true</UseXmlMapping> </PropertyGroup> 
+1
source

All Articles