I have a solution with two projects.
Integration.Api
Integration.Common
In Azure DevOps, I have steps which run for the Integration.Api
project, I also have these build steps to create a NuGet package for the Integration.Common
project:
dotnet Pack Common
dotnet Nuget Push
What do I put in the Custom condition textbox so that the step runs only if the Integration.Common
project has changed? ie. I still want the build to run if Integration.Api
has changed, but I only want the dotnet Pack steps to run if Integration.Common
has changed.