dotnet build or open cmd/powershell, go to the project directory, and dotnet runbin/Debug/net8.0/ iircdotnet builddotnet runbin/Debug/net8.0/using System;
namespace Test_1
{
class Program
{
static void Main(string[] args)
{
Console.Title = "First Ever Test";
Console.ForegroundColor = ConsoleColor.Green;
}
}
}