1 write to BootstrapPath
dotnet-svcutil-lib (1)
CommandProcessorOptions.cs (1)
576this.BootstrapPath = new DirectoryInfo(Path.Combine(tempDir, baseDirName, sessionDirName));
15 references to BootstrapPath
dotnet-svcutil-lib (15)
Bootstrapper\SvcutilBootstrapper.cs (1)
99var projectFullPath = Path.Combine(this.Options.BootstrapPath.FullName, nameof(SvcutilBootstrapper), SvcutilBootstrapper.ProjectName);
CommandProcessorOptions.cs (14)
570if (this.BootstrapPath == null) 581await logger.WriteMessageAsync($"{BootstrapPathKey}:\"{this.BootstrapPath}\"", logToUI: false).ConfigureAwait(false); 680Debug.Assert(this.BootstrapPath != null, $"{nameof(this.BootstrapPath)} is not initialized!"); 684var projectFullPath = Path.Combine(this.BootstrapPath.FullName, "TFMResolver", "TFMResolver.csproj"); 822string projFolder = Path.Combine(this.BootstrapPath.FullName, nameof(SvcutilBootstrapper)); 994if (!Directory.Exists(this.BootstrapPath.FullName)) 996Directory.CreateDirectory(this.BootstrapPath.FullName); 1000await RuntimeEnvironmentHelper.TryCopyingConfigFiles(workingDirectory, this.BootstrapPath.FullName, logger, cancellationToken).ConfigureAwait(false); 1010if (this.BootstrapPath != null && this.BootstrapPath.Exists) 1014this.Logger?.WriteMessageAsync($"Bootstrap directory '{this.BootstrapPath}' ...", logToUI: false); 1018this.Logger?.WriteMessageAsync($"Deleting bootstrap directory '{this.BootstrapPath}' ...", logToUI: false); 1019this.BootstrapPath.Delete(recursive: true);