我一直在寻找几个小时来解决我的问题。但我已经使用 Visual Studio 2015 社区版下载了 Cosmos(操作系统)。起初我下载了 userkit,然后意识到我想要 devkit(也许)。我在网上看到的所有例子都在使用这个:
using Cosmos.Compiler.Builder;
但这对我不起作用。(我确实更改了属性以使用 3.5 框架,我读到我必须使用它,现在它在任何地方都找不到 Cosmos。在我使用框架 4.5 之前,我可以使用 cosmos,但只能使用 Cosmos.System 和另一个。任何想法关于我做错了什么?
这是我第一次启动 cosmos 项目时在 Kernel.cs 中得到的:
using System;
using System.Colletions.Generic;
using System.Text;
using Sys = Cosmos.System;
namespace CosmosKernel1
{
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 type: ");
Console.WriteLine(input);
}
}
}