A set of .NET Framework managed libraries for developing graphical user interfaces.
Hello @Jay O'Brien ,
Thanks for your question.
The error The type 'System.Configuration.ApplicationScopedSettingAttribute' could not be found means Visual Studio can't resolve types from System.Configuration.
You can refer to following steps:
- Check the Error List for compile errors across the whole project. The designer won't load any form if the project fails to build. Fix all compile errors first before proceeding.
- Add the Missing NuGet Package.
In your .csproj (use the latest stable version, for ex: 8.0.0):
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
- In your .csproj, confirm you're targeting the right framework:
<!-- For .NET Framework-->
<TargetFramework>net48</TargetFramework>
<!-- For modern .NET with WinForms -->
<TargetFramework>net8.0-windows</TargetFramework>
- Sometimes a stale build causes the designer to fail:
- Build -> Clean solution
- Build -> Rebuid solution
- Delete the bin/ and obj/ folders manually, then rebuild.
- If the update itself broke something, please repair visual studio.
- Open Visual Studio Installer.
- Click More → Repair on your installed version.
I hope this addresses your question. If this response was helpful, please consider following the guidance to provide feedback.