dotnet / arcade

Tools that provide common build infrastructure for multiple .NET Foundation projects.
MIT License
671 stars 349 forks source link

Limited the UpToDateCheckInput/Output to a set #15280

Closed Cosifne closed 7 hours ago

Cosifne commented 11 hours ago

In a VSIX project, it will generate

  1. VSIX
  2. VSIX.dll

For UpToDateCheck, it should only check the input with the VSIX output, rather than the VSIX.dll.

So according to the doc: https://github.com/dotnet/project-system/blob/main/docs/up-to-date-check.md#grouping-inputs-and-outputs-into-sets It is achievable via a Set.

Thanks for @drewnoakes for providing help!