Alquimiaware.NuGetUnity.Sources.AddRemote C# (CSharp) Method

AddRemote() public method

public AddRemote ( string remotePackage ) : void
remotePackage string
return void
        public void AddRemote(string remotePackage)
        {
            if (string.IsNullOrEmpty(remotePackage))
                return;

            this.remote.Add(remotePackage);
        }