Temporarily remove InitialSessionState

This commit is contained in:
Andrew Schwartzmeyer 2015-12-01 13:27:51 -08:00
parent b60ea88ddb
commit a574d0200b

View File

@ -186,13 +186,10 @@ namespace Microsoft.PowerShell.Linux.Host
// Note that this application does not support console files so // Note that this application does not support console files so
// only the default snap-ins will be available. // only the default snap-ins will be available.
this.myHost = new MyHost(this); this.myHost = new MyHost(this);
Console.WriteLine("myHost"); // InitialSessionState iss = InitialSessionState.CreateDefault2();
InitialSessionState iss = InitialSessionState.CreateDefault2(); // TODO: CreateRunspace(this.myHost, iss)
Console.WriteLine("iss"); this.myRunSpace = RunspaceFactory.CreateRunspace(this.myHost);
this.myRunSpace = RunspaceFactory.CreateRunspace(this.myHost, iss);
Console.WriteLine("runspace created");
this.myRunSpace.Open(); this.myRunSpace.Open();
Console.WriteLine("runspace opened");
// Create a PowerShell object to run the commands used to create // Create a PowerShell object to run the commands used to create
// $profile and load the profiles. // $profile and load the profiles.