1 write to BootstrapPath
dotnet-svcutil-lib (1)
CommandProcessorOptions.cs (1)
578
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)
572
if (this.
BootstrapPath
== null)
583
await logger.WriteMessageAsync($"{BootstrapPathKey}:\"{this.
BootstrapPath
}\"", logToUI: false).ConfigureAwait(false);
694
Debug.Assert(this.
BootstrapPath
!= null, $"{nameof(this.
BootstrapPath
)} is not initialized!");
698
var projectFullPath = Path.Combine(this.
BootstrapPath
.FullName, "TFMResolver", "TFMResolver.csproj");
836
string projFolder = Path.Combine(this.
BootstrapPath
.FullName, nameof(SvcutilBootstrapper));
1008
if (!Directory.Exists(this.
BootstrapPath
.FullName))
1010
Directory.CreateDirectory(this.
BootstrapPath
.FullName);
1014
await RuntimeEnvironmentHelper.TryCopyingConfigFiles(workingDirectory, this.
BootstrapPath
.FullName, logger, cancellationToken).ConfigureAwait(false);
1024
if (this.
BootstrapPath
!= null && this.
BootstrapPath
.Exists)
1028
this.Logger?.WriteMessageAsync($"Bootstrap directory '{this.
BootstrapPath
}' ...", logToUI: false);
1032
this.Logger?.WriteMessageAsync($"Deleting bootstrap directory '{this.
BootstrapPath
}' ...", logToUI: false);
1033
this.
BootstrapPath
.Delete(recursive: true);