2 writes to OutputDir
dotnet-svcutil-lib (2)
CommandProcessorOptions.cs (2)
396
this.
OutputDir
= IsUpdateOperation ?
410
this.
OutputDir
= new DirectoryInfo(Path.Combine(workingDirectory, originalDirSpec));
11 references to OutputDir
dotnet-svcutil-lib (11)
CodeSerializer.cs (1)
32
_outputFilePath = OutputPathHelper.BuildFilePath(s_defaultFileName, options.
OutputDir
.FullName, outputFilename, extension, CommandProcessorOptions.Switches.OutputFile.Name);
CommandProcessorOptions.cs (8)
216
await ProcessOutputFileOptionAsync(this.
OutputDir
.FullName, cancellationToken);
378
if (this.
OutputDir
== null)
394
if (this.
OutputDir
== null)
401
await logger.WriteMessageAsync($"{OutputDirKey}:\"{this.
OutputDir
}\"", logToUI: false).ConfigureAwait(false);
406
var originalDirSpec = this.
OutputDir
.ToString(); // ToString provides the original value of the DirectoryInfo.
435
if (PathHelper.IsUnderDirectory(outputFile, this.
OutputDir
, out var filePath, out var relPath))
448
string.Format(CultureInfo.CurrentCulture, SR.ErrOutputFileNotUnderOutputDirFormat, Switches.OutputFile.Name, outputFile, this.
OutputDir
, Switches.OutputDirectory.Name));
651
if (this.Project != null && PathHelper.GetRelativePath(this.
OutputDir
.FullName, new DirectoryInfo(this.Project.DirectoryPath), out var relPath))
Tool.cs (2)
312
updateOptions.MakePathsRelativeTo(options.
OutputDir
);
314
var paramsFile = Path.Combine(options.
OutputDir
.FullName, CommandProcessorOptions.SvcutilParamsFileName);