I have a Solution like so, repo'd in Git:
AwesomeSln
---Web.csproj
---Services.csproj
---Core.csproj
---UnitTests.csproj
---SDK.csproj
Most of the solution is Web, and the CI is handled by Azure. Tests run, web is published, wutevz.
But the SDK Project is a related NuGet package that offers help consuming this web project. The NuGet for this company is set up using TeamCity.
So what I'd like to do, is have TeamCity trigger a NuGet build if there is a change to the SDK Project. But not whenever any willy-nilly checkin' happens.
Any way to trigger a NuGet build only if one specific project changed?