21

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.

Jordi
  • 2,055
  • 1
  • 16
  • 34

1 Answers1

38

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.

Jordi
  • 2,055
  • 1
  • 16
  • 34