1

我一直在寻找几个小时来解决我的问题。但我已经使用 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);
        }
    }
}
4

1 回答 1

1

首先确保你有一个 COSMOS PROJECT 而不是典型的 c# 控制台应用程序或其他东西。

其次,在确认之后,确保你的引用中有 cosmos.compiler 和所有 cosmos dll。

教程:https ://www.youtube.com/watch?v=oKW3BrclAUY

于 2016-12-19T21:38:07.100 回答