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