CosmosOS / Cosmos

Cosmos is an operating system "construction kit". Build your own OS using managed languages such as C#, VB.NET, and more!
https://www.goCosmos.org
BSD 3-Clause "New" or "Revised" License
2.85k stars 536 forks source link

MSB6006 IL2CPU ended with a code -2147450730 in File Cosmos.Build.targets #2952

Closed FelekDevYT closed 2 months ago

FelekDevYT commented 2 months ago

using System; using System.Collections.Generic; using System.Text; using Sys = Cosmos.System;

namespace MyOS { 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);
    }
}

}

quajak commented 2 months ago

Please include build logs