withSIX.Sync.Core.Packages.PackageManager.ProcessPackages C# (CSharp) Method

ProcessPackages() public method

public ProcessPackages ( IEnumerable packageNames, bool useFullNameOverride = null, bool noCheckout = false, bool skipWhenFileMatches = true ) : Task
packageNames IEnumerable
useFullNameOverride bool
noCheckout bool
skipWhenFileMatches bool
return Task
        public Task<Package[]> ProcessPackages(IEnumerable<SpecificVersion> packageNames,
                bool? useFullNameOverride = null,
                bool noCheckout = false, bool skipWhenFileMatches = true)
            => ProcessPackages(packageNames.Select(x => x.ToDependency()), useFullNameOverride, noCheckout,
                skipWhenFileMatches);

Same methods

PackageManager::ProcessPackages ( IEnumerable packageNames, bool useFullNameOverride = null, bool noCheckout = false, bool skipWhenFileMatches = true ) : Task