You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.
Hi there! I was running into issue #580 (specifically a shared library being built in parallel by two depending projects) so I thought I'd look into a possible solution.
My idea was to queue the requests to build to another worker task, which would then deque in batches, remove duplicate calls if necessary, and optionally look to see if the project was part of a globally configured solution - and use that to build it if so.
Example config (albeit the simplest approach):
name: tye-build-fixsolution: tye-build-fix.slnservices:
- name: frontendproject: frontend/frontend.csproj
- name: backendproject: backend/backend.csproj# both projects depend on SharedLibrary/SharedLibrary.csproj
I have working code (about a day's worth of work), but I saw you'd prefer discussion before PR?
The text was updated successfully, but these errors were encountered:
Hi there! I was running into issue #580 (specifically a shared library being built in parallel by two depending projects) so I thought I'd look into a possible solution.
My idea was to queue the requests to build to another worker task, which would then deque in batches, remove duplicate calls if necessary, and optionally look to see if the project was part of a globally configured solution - and use that to build it if so.
Example config (albeit the simplest approach):
I have working code (about a day's worth of work), but I saw you'd prefer discussion before PR?
The text was updated successfully, but these errors were encountered: