Cosmos/Docs/Express/Compile.html
2010-09-10 20:32:14 +00:00

30 lines
No EOL
1.4 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
For creating your own Cosmos in Express 2010 you need the following:
<ul>
<li>Visual Studio Express 2010 for C# or VB.NET</li>
<li>installed Cosmos Kit(User Kit or compiled from checkout (Dev Kit))</li>
<li>Visual Studio 2010 Shell (Isolated Shell)</li>
</ul>
<p>In Visual Studio Express 2010 you create a library project, that contain your OS code, and
a project for compiling your OS.</p>
<ol>
<li>Start Visual Studio Express 2010 and create a project named "Cosmos C# Library".
This is the part of your OS for adding Code. Compile this project now for creating
the DLL for later use. After that save it.</li>
<li>(UNTESTED) Start your Microsoft Visual Studio 2010 Shell and create a Project "Cosmos Project (Empty)".
It contains a custom Project that use MSBuild with many tasks to create your OS. Save the project.</li>
<li>Copy now the created library with name of your project in the folder of the build project under bin/Debug/
Thats needed else would the added reference in next step not found.</li>
<li>Add now the reference to the build project and try to build. When you get a warning that the added assembly
is not found, you get "No Kernel Found!".</li>
</ol>
</body>
</html>