❔ Free and open source IDE ? / How to make debug console work in CLI ?
Hello, I'm wondering is there any good free and open source IDE to program in .NET ? (with Avalonia)
I didn't find any and I really don't want to use anything proprietary. I've tried using Helix with Omnisharp and Netcoredbg however I can't figure out how to make the damn
Debug
Debug
console work.
For instance :
using System.Diagnostics;Debug.WriteLine("Hello, World");
using System.Diagnostics;Debug.WriteLine("Hello, World");
When ran with
dotnet run
dotnet run
just returns nothing at all. I don't understand why and how to fix it. All stuff I've seen used an IDE to solve that issue.