Manages communication between ITasks and a OneGet Request.
상속: NanoByte.Common.Tasks.CliTaskHandler
예제 #1
0
        private string GetProviderDirectory()
        {
            using (var handler = new OneGetHandler(_request))
            {
                var bootstrap = new BootstrapProcess(handler, gui: false);

                // ReSharper disable once AssignNullToNotNullAttribute
                return(Path.GetDirectoryName(bootstrap.GetStartInfo().FileName));
            }
        }
 /// <summary>
 /// Gets the path of the directory to load the Zero Install OneGet provider assembly from.
 /// </summary>
 /// <returns>The full path of the directory containing the provider assembly.</returns>
 private string GetProviderDirectory()
 {
     using var handler = new OneGetHandler(_request);
     return(Path.GetDirectoryName(ProgramUtils.GetStartInfo(handler).FileName));
 }
        private string GetProviderDirectory()
        {
            using (var handler = new OneGetHandler(_request))
            {
                var bootstrap = new BootstrapProcess(handler, gui: false);

                // ReSharper disable once AssignNullToNotNullAttribute
                return Path.GetDirectoryName(bootstrap.GetStartInfo().FileName);
            }
        }