From 54cecd764802990755d2c2b0fb7cd91dcce138ec Mon Sep 17 00:00:00 2001 From: kudzu_cp <6d05c8c8ef5431987001abfdb2eadc9593ac9498> Date: Mon, 9 Aug 2010 12:54:11 +0000 Subject: [PATCH] --- .../Breakpoints/BreakpointsKernel.csproj | 57 +++++++++++++++++++ source2/Users/Kudzu/Breakpoints/Program.cs | 27 +++++++++ .../Breakpoints/Properties/AssemblyInfo.cs | 36 ++++++++++++ 3 files changed, 120 insertions(+) create mode 100644 source2/Users/Kudzu/Breakpoints/BreakpointsKernel.csproj create mode 100644 source2/Users/Kudzu/Breakpoints/Program.cs create mode 100644 source2/Users/Kudzu/Breakpoints/Properties/AssemblyInfo.cs diff --git a/source2/Users/Kudzu/Breakpoints/BreakpointsKernel.csproj b/source2/Users/Kudzu/Breakpoints/BreakpointsKernel.csproj new file mode 100644 index 000000000..61d23ca7e --- /dev/null +++ b/source2/Users/Kudzu/Breakpoints/BreakpointsKernel.csproj @@ -0,0 +1,57 @@ + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {91CBD640-C07D-4556-B4CB-6F8CD88C67C9} + Library + Properties + BreakpointsKernel + BreakpointsKernel + v3.5 + 512 + SAK + SAK + SAK + SAK + + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source2/Users/Kudzu/Breakpoints/Program.cs b/source2/Users/Kudzu/Breakpoints/Program.cs new file mode 100644 index 000000000..a18b2b696 --- /dev/null +++ b/source2/Users/Kudzu/Breakpoints/Program.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace BreakpointsKernel +{ + public class Kernel + { + public static void Boot() + { + Cosmos.Sys.Boot xBoot = new Cosmos.Sys.Boot(); + xBoot.Execute(); + + Console.WriteLine("Test"); + Console.WriteLine("3 Cosmos booted successfully. Type a line of text to get it echoed back."); + Console.WriteLine("Test"); + while (true) + { + Console.Write("Input: "); + string xResult = Console.ReadLine(); + Console.Write("Text typed: "); + Console.WriteLine(xResult); + //Cosmos.Debug.Debugger.Send(xResult); + } + } + } +} diff --git a/source2/Users/Kudzu/Breakpoints/Properties/AssemblyInfo.cs b/source2/Users/Kudzu/Breakpoints/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..2142da0c2 --- /dev/null +++ b/source2/Users/Kudzu/Breakpoints/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("BreakpointsKernel")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("BreakpointsKernel")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2010")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("1f6545df-c71c-460d-96ae-f804d532cd65")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")]