我正在尝试使用 C# 开始使用 Cosmos。我安装了 Visual Studio 2017 和 Cosmos 用户工具包。在 youtube 上的许多教程中,我看到 VMWare 播放器在按下“运行”按钮时就会启动。
但是,就我而言,我收到以下错误:“无法直接启动具有输出类型的类库的项目。”
我的代码真的很简单,是文档中给出的基本示例。请帮我解决这个问题。
using System;
using System.Collections.Generic;
using System.Text;
using Sys = Cosmos.System;
namespace CosmosKernel2
{
public class Kernel : Sys.Kernel
{
protected override void BeforeRun()
{
Console.WriteLine("Cosmos booted successfully. Type a line of text to get it echoed back.");
}
protected override void Run()
{
Console.Write("Input: ");
var input = Console.ReadLine();
Console.Write("Text typed: ");
Console.WriteLine(input);
}
}
}