PresentationFramework.pdb not found

Suddenly, Visual Studio says that PresentationFramework.pdb was not found. InnerException says that something is wrong with line 4 in Application.exe.config:

<?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> <sectionGroup name="userSettings" Type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <section name="Application.Properties.Settings" Type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/> </sectionGroup> </configSections> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/> </startup> <userSettings> <Application.Properties.Settings> </Application.Properties.Settings> </userSettings> </configuration> 

Reading the presentation structure or cleaning and restoring the project does not work.

Problem Solved I just had to rename Type to Type .

+5
source share

Source: https://habr.com/ru/post/1241942/


All Articles