24 lines
581 B
Plaintext
24 lines
581 B
Plaintext
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Microsoft Research Singularity
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
// File: Shell.csi
|
||
|
//
|
||
|
|
||
|
using System;
|
||
|
|
||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||
|
[assembly: System.Reflection.AssemblyKeyFileAttribute("public.snk")]
|
||
|
[assembly: System.Reflection.AssemblyDelaySignAttribute(true)]
|
||
|
|
||
|
namespace Microsoft.Singularity.Shell
|
||
|
{
|
||
|
public class Shell
|
||
|
{
|
||
|
public static int ShellMain(String[] args);
|
||
|
}
|
||
|
}
|
||
|
|