2 writes to BootstrapPath
dotnet-svcutil-lib (1)
CommandProcessorOptions.cs (1)
584
this.
BootstrapPath
= new DirectoryInfo(Path.Combine(tempDir, baseDirName, sessionDirName));
dotnet-svcutil-lib.Tests (1)
GlobalToolTests.cs (1)
206
options.
BootstrapPath
= new DirectoryInfo(this_TestCaseBootstrapDir);
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)
578
if (this.
BootstrapPath
== null)
589
await logger.WriteMessageAsync($"{BootstrapPathKey}:\"{this.
BootstrapPath
}\"", logToUI: false).ConfigureAwait(false);
700
Debug.Assert(this.
BootstrapPath
!= null, $"{nameof(this.
BootstrapPath
)} is not initialized!");
704
var projectFullPath = Path.Combine(this.
BootstrapPath
.FullName, "TFMResolver", "TFMResolver.csproj");
853
string projFolder = Path.Combine(this.
BootstrapPath
.FullName, nameof(SvcutilBootstrapper));
1029
if (!Directory.Exists(this.
BootstrapPath
.FullName))
1031
Directory.CreateDirectory(this.
BootstrapPath
.FullName);
1035
await RuntimeEnvironmentHelper.TryCopyingConfigFiles(workingDirectory, this.
BootstrapPath
.FullName, logger, cancellationToken).ConfigureAwait(false);
1045
if (this.
BootstrapPath
!= null && this.
BootstrapPath
.Exists)
1049
this.Logger?.WriteMessageAsync($"Bootstrap directory '{this.
BootstrapPath
}' ...", logToUI: false);
1053
this.Logger?.WriteMessageAsync($"Deleting bootstrap directory '{this.
BootstrapPath
}' ...", logToUI: false);
1054
this.
BootstrapPath
.Delete(recursive: true);