using System.Collections.Generic; namespace NuGet.PackageManagement.VisualStudio; public interface IScriptPackage { string Id { get; } string Version { get; } IEnumerable AssemblyReferences { get; } IEnumerable GetFiles(); }