using System; using System.Threading.Tasks; namespace MonoDevelop.ConnectedServices { /// /// Represents a NuGet dependency of a connected serviuce. /// public interface IPackageDependency : IConnectedServiceDependency { /// /// Gets the nuget package id of the dependency that is added to the project /// string PackageId { get; } /// /// Gets the nuget package version of the dependency that is added to the project. Return null for the latest version /// string PackageVersion { get; } } }