You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
959 B
28 lines
959 B
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
using ICSharpCode.AvalonEdit; |
|
using ICSharpCode.Scripting; |
|
using ICSharpCode.SharpDevelop.Project; |
|
using NuGet; |
|
|
|
namespace ICSharpCode.PackageManagement.Scripting |
|
{ |
|
public interface IPackageManagementConsoleHost : IDisposable |
|
{ |
|
IProject DefaultProject { get; set; } |
|
PackageSource ActivePackageSource { get; set; } |
|
IScriptingConsole ScriptingConsole { get; set; } |
|
IPackageManagementSolution Solution { get; } |
|
|
|
void Clear(); |
|
void WritePrompt(); |
|
void Run(); |
|
|
|
IPackageManagementProject GetProject(string packageSource, string projectName); |
|
IPackageManagementProject GetProject(IPackageRepository sourceRepository, string projectName); |
|
PackageSource GetActivePackageSource(string source); |
|
} |
|
}
|
|
|