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
For the Oly CLI, some of the basics such as build and clean are implemented. The following need to be handled:
Display non-error diagnostics if the build succeeded. Requires modifying BuildProjectAsync to return this information for successful builds.
Allow the Oly CLI to be locally hosted to allow subsequent oly CLI commands to communicate with it directly. The reasoning behind this is to make compilation go faster with caching and JITing. C# does something similar.
Note: If this becomes difficult, we should either not do anything and accept the start-up time cost, or use ReadyToRun to help decrease start-up time (a few unknowns as to how to handle this across platforms).
For the Oly CLI, some of the basics such as
buildandcleanare implemented. The following need to be handled:BuildProjectAsyncto return this information for successful builds.hostedto allow subsequentolyCLI commands to communicate with it directly. The reasoning behind this is to make compilation go faster with caching and JITing. C# does something similar.