So I was having this problem in Visual Studio 2022. In my case, the problem appears to have been that the stored procs were originally created without a schema, so CREATE PROCEDURE [proc_SomeProc]instead of CREATE PROCEDURE [dbo].[proc_SomeProc] Once I added the schema in both the Visual Studio project and the proc on SQL server no difference was reported.