Ricky

Results 4 comments of Ricky

I'm using Oh-My-Zsh in Ubuntu 18.04 on Windows. I didn't find out a better solution but finally modified the theme itself. ``` vim ~/.oh-my-zsh/themes/agnoster.zsh-theme ``` Change the `blue` color to...

It would be useful if the "Command" field can also be blank because I want to run a compiled .net core assembly like this: `dotnet.exe MyCompiledDotNetCoreAssembly.dll OneParameter TwoParameter`, not `dotnet.exe...

@SirGordon Yes. But it seems to be used for full .NET Framework 2.0, 3.5, 4.x, not for .NET Core. Anyway, I can also use "Command Line", so it's not a...

As a workaround, currently I add a [global.json](https://docs.microsoft.com/en-us/dotnet/core/tools/global-json) file in my solution to specify a particular .NET SDK version other than 6.0.301, then everything works again. The global.json file can...