| File: Definitions\INuspecReader.cs | Web Access |
| Project: src\nuget-client\src\NuGet.Core\NuGet.Packaging\NuGet.Packaging.csproj (NuGet.Packaging) |
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using NuGet.Packaging.Core; namespace NuGet.Packaging { /// <summary> /// A development package nuspec reader /// </summary> [Obsolete("This interface is unused and does not contain any implementations. It will be removed in a future release.")] public interface INuspecReader : INuspecCoreReader { IEnumerable<PackageDependencyGroup> GetDependencyGroups(); IEnumerable<FrameworkSpecificGroup> GetReferenceGroups(); IEnumerable<FrameworkSpecificGroup> GetFrameworkReferenceGroups(); /// <summary> /// The locale ID for the package, such as en-us. /// </summary> string GetLanguage(); } }