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 Mar 18, 2024. It is now read-only.
Through some trial and error, I think I've identified a problem
If you use a tye.yaml file that uses the solution: root setting, and that solution file contains a project with a . character in the name, the watch command doesn't reconnect once it recompiles an app.
Steps to recreate:
Create 2 projects with . in the name. Test.App1.csproj and Test.App2.csproj
Add both projects to a solution file
Create a tye.yaml with a root level solution: apps.sln or similar with the new solution file name, plus add services for the projects.
In vscode, add the tye tasks, then run with tye. If you edit a file in a project, the debugger disconnects (due to the recompile), but never reconnects.
If you comment out the solution: line, the tye extension works as expected (recompiles, then reconnects the debugger)
The text was updated successfully, but these errors were encountered:
Through some trial and error, I think I've identified a problem
If you use a tye.yaml file that uses the
solution:
root setting, and that solution file contains a project with a.
character in the name, the watch command doesn't reconnect once it recompiles an app.Steps to recreate:
Create 2 projects with
.
in the name. Test.App1.csproj and Test.App2.csprojAdd both projects to a solution file
Create a tye.yaml with a root level
solution: apps.sln
or similar with the new solution file name, plus add services for the projects.In vscode, add the tye tasks, then run with tye. If you edit a file in a project, the debugger disconnects (due to the recompile), but never reconnects.
If you comment out the
solution:
line, the tye extension works as expected (recompiles, then reconnects the debugger)The text was updated successfully, but these errors were encountered: