/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/
using System;
using System.Reflection;
namespace Microsoft.PowerShell
{
///
/// Defines an entry point for the .NET CLI "powershell" app
///
public sealed class ManagedPSEntry
{
///
/// Starts the managed MSH
///
///
/// Command line arguments to the managed MSH
///
public static int Main(string[] args)
{
return UnmanagedPSEntry.Start(string.Empty, args, args.Length);
}
}
}