When I have an SQL Server Database project (.sqlproj
) in Visual Studio solution, I notice that that particular project always gets built every time I build the solution even though there is no change in the project files.
This is inconsistent with normal C#
project (.csproj
) that only gets built when there is any file that changes.
I have tried cranking up the msbuild
output verbosity, and it seems to always build that project without special reason.
Is there a reason why .sqlproj
is always built? Is there a way to make it build only when file changes?
<Include>
. There are no extra build action as well ... – Wellpreserved