using System.Collections.Generic; namespace Prise { public interface IRuntimePlatformContext { IEnumerable GetPlatformExtensions(); IEnumerable GetPluginDependencyNames(string nameWithoutFileExtension); IEnumerable GetPlatformDependencyNames(string nameWithoutFileExtension); RuntimeInfo GetRuntimeInfo(); } }