dependencies

package
v1.10.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 27, 2024 License: Apache-2.0 Imports: 15 Imported by: 1

Documentation

Index

Constants

View Source
const (
	AssetFileName = "project.assets.json"
	AssetDirName  = "obj"
)
View Source
const (
	PackagesFileName = "packages.config"
)

Variables

This section is empty.

Functions

func CreateAlternativeVersionForms added in v1.9.36

func CreateAlternativeVersionForms(originalVersion string) []string

NuGet allows the version will be with missing or unnecessary zeros This method will return a list of the possible alternative versions "1.0" --> []string{"1.0.0.0", "1.0.0", "1"} "1" --> []string{"1.0.0.0", "1.0.0", "1.0"} "1.2" --> []string{"1.2.0.0", "1.2.0"} "1.22.33" --> []string{"1.22.33.0"} "1.22.33.44" --> []string{} "1.0.2" --> []string{"1.0.2.0"}

func CreateDependencyTree

func CreateDependencyTree(extractor Extractor, log utils.Log) (deptree.Root, error)

Types

type Extractor

type Extractor interface {
	// Check whether the extractor is compatible with the current dependency resolution method
	IsCompatible(projectName, dependenciesSource string, log utils.Log) bool
	// Get all the dependencies for the project
	AllDependencies(log utils.Log) (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.

func CreateCompatibleExtractor

func CreateCompatibleExtractor(projectName, dependenciesSource string, log utils.Log) (Extractor, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL