Documentation ¶
Index ¶
Constants ¶
View Source
const ( AssetFileName = "project.assets.json" AssetDirName = "obj" )
View Source
const PackagesFileName = "packages.config"
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Extractor ¶
type Extractor interface { // Check whether the extractor is compatible with the current dependency resolution method IsCompatible(projectName, dependenciesSource string) bool // Get all the dependencies for the project AllDependencies() (map[string]*buildinfo.Dependency, error) // Get all the root dependencies of the project DirectDependencies() ([]string, error) // Dependencies relations map ChildrenMap() (map[string][]string, error) // contains filtered or unexported methods }
The extractor responsible to calculate the project dependencies.
Click to show internal directories.
Click to hide internal directories.