I'm using the following products loaded onto Windows 11 Pro: Visual Studio 2022 Developer, SQL Server 2022, SQL Server Management Studio 21.
I have created a WPF application in VS using .NET 8. When I try to load that project into SSMS, I get the following message:
Could not load SDK Resolver. A manifest file exists, but the path to the SDK Resolver DLL file could not be found. Manifest file path 'C:\Program Files\Microsoft SQL Server Management Studio 21\Release\MSBuild\Current\Bin\SdkResolvers\Microsoft.Build.NuGetSdkResolver\Microsoft.Build.NuGetSdkResolver.xml'. SDK resolver path: C:\Program Files\Microsoft SQL Server Management Studio 21\Release\Common7\IDE\CommonExtensions\Microsoft\NuGet\Microsoft.Build.NuGetSdkResolver.dll
Actions taken:
- Reinstalled and repaired VS2022 (making sure to select NuGet dependencies)
- Reinstalled and repaired SSMS 21
After doing all of that I still have no NuGet folder located at C:\Program Files\Microsoft SQL Server Management Studio 21\Release\Common7\IDE\CommonExtensions\Microsoft.
I have two questions:
How do I get the
SDKResolver.dll(and other required NuGet files) into the directoryC:\Program Files\Microsoft SQL Server Management Studio 21\Release\Common7\IDE\CommonExtensions\Microsoft\NuGet\?Is it possible to edit the
.xmlfile to point to the NuGet folder which was created when I installed VS2022 (C:\Program Files\Visual Studio 2022\Release\Common7\IDE\CommonExtensions\Microsoft\NuGet\) ?
Any help would be greatly appreciated.