Thanks for reaching out! The SDK when trying to build SharePoint solutions in Visual Studio. The error indicates that the project is trying to load a specific version of the Microsoft.VisualStudio.Modeling.Sdk assembly (Version 17.0.0.0) which may not be compatible with your current setup in Visual Studio 2026.
Check the below steps which are helpful
Check SDK Compatibility: Confirm that you have the correct version of the SharePoint SDK installed. For Visual Studio 2026, ensure that all components are up-to-date and compatible.
Modify Project Configuration: Open your project file (.csproj) and see if you can manually change the references to use Version 18.0.0.0 instead of 17.0.0.0. This might resolve the referencing issue.
Repair Visual Studio: Sometimes, repairing the Visual Studio installation can fix underlying issues with assemblies not being recognized or loading properly. You can do this through the Visual Studio Installer.
Check Dependencies: Make sure all dependencies and components your project relies on are installed and properly configured in your environment.
Update NuGet Packages: If your project utilizes NuGet packages, check to ensure they are also updated to be compatible with your current SDK version.