7 references to OriginalPath
dotnet-svcutil-lib (7)
CommandProcessorOptions.cs (3)
388workingDirectory = Path.IsPathRooted(this.OutputFile.OriginalPath()) ? 389Path.GetDirectoryName(this.OutputFile.FullName) : Path.GetDirectoryName(Path.Combine(Directory.GetCurrentDirectory(), this.OutputFile.OriginalPath())); 418var outputFile = this.OutputFile?.OriginalPath();
Shared\Options\OptionValueParser.cs (1)
118value = fi.OriginalPath().Replace("\\", "/");
Shared\Options\UpdateOptions.cs (3)
86if (this.OutputFile != null && PathHelper.GetRelativePath(this.OutputFile.OriginalPath(), optionsFileDirectory, out var relPath)) 104if (this.OutputFile != null && !Path.IsPathRooted(this.OutputFile.OriginalPath())) 106this.OutputFile = new FileInfo(Path.Combine(optionsFileDirectory.FullName, this.OutputFile.OriginalPath()));