How can I make the C# interactive console inside Visual Studio use .NET Core instead of .NET Framework?
By default when it starts it shows that it is using .NET Framework in parenthesis in the title bar.
How can I make the C# interactive console inside Visual Studio use .NET Core instead of .NET Framework?
By default when it starts it shows that it is using .NET Framework in parenthesis in the title bar.
In Visual Studio 2019 16.8.3 (and probably in earlier versions, but I don't know how much earlier) you can execute:
#reset core
This resets the C# interactive console and makes it use .NET Core.