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
It would be nice to have a simple way to put the dotnet path into PATH since tools like fable are calling into dotnet and need the correct version. /cc @alfonsogarciacaro
let dotnetTool = (install.Value (DotNet.Options.Create())).DotNetCliPath
let dotnetFolder = FileInfo(dotnetTool).Directory.FullName
Environment.setEnvironVar "PATH" (dotnetFolder + ";" + Environment.environVar "PATH")
The text was updated successfully, but these errors were encountered:
Yes, Fable is still relying on dotnet being globally accessible. Also remember we had trouble before with Windows and Unix systems (Windows uses ; as PATH separator, while Unix uses :).
It would be nice to have a simple way to put the dotnet path into PATH since tools like fable are calling into dotnet and need the correct version. /cc @alfonsogarciacaro
The text was updated successfully, but these errors were encountered: