Orc.NuGetExplorer.NuGetConfigurationService.SetDestinationFolder C# (CSharp) Method

SetDestinationFolder() public method

public SetDestinationFolder ( string value ) : void
value string
return void
        public void SetDestinationFolder(string value)
        {
            Argument.IsNotNullOrWhitespace(() => value);

            _configurationService.SetRoamingValue(Settings.NuGet.DestinationFolder, value);
        }