Table of Contents

Class Dependency

Namespace
SunamoPackageJson
Assembly
SunamoPackageJson.dll

Represents a single package dependency with a key (package name) and value (version).

public class Dependency
Inheritance
Dependency
Inherited Members
Extension Methods

Constructors

Dependency(string, string)

Initializes a new instance of the Dependency class.

public Dependency(string key, string value)

Parameters

key string

The package name.

value string

The package version.

Properties

Key

Gets or sets the package name.

public string Key { get; set; }

Property Value

string

Value

Gets or sets the package version.

public string Value { get; set; }

Property Value

string