Alquimiaware.NuGetUnity.InstallCommand.Execute C# (CSharp) Method

Execute() public method

public Execute ( string packageName, string version ) : void
packageName string
version string
return void
        public void Execute(string packageName, string version)
        {
            this.downloadPackage.Execute(packageName, version);

            var classifiedPackages = this.classifyCommand.Execute(this.downloadPackage.TempDestDirectory);
            ////this.targetDropper.DropUnusedTargets(classifiedPackages);

            ////// TODO: Validation of results and confirmation of usage of fallback goes here

            ////pkgMover.MovePackagesToOutputFolder(classifiedPackages, this.OutputDirectory);
        }