3 writes to OutputFile
dotnet-svcutil-lib (3)
CommandProcessorOptions.cs (1)
455this.OutputFile = new FileInfo(outputFile);
Shared\Options\UpdateOptions.cs (2)
88this.OutputFile = new FileInfo(relPath); 106this.OutputFile = new FileInfo(Path.Combine(optionsFileDirectory.FullName, this.OutputFile.OriginalPath()));
12 references to OutputFile
dotnet-svcutil-lib (12)
CodeSerializer.cs (1)
133string fileName = options.OutputFile?.FullName;
CommandProcessorOptions.cs (4)
387workingDirectory = Path.IsPathRooted(this.OutputFile.OriginalPath()) ? 388Path.GetDirectoryName(this.OutputFile.FullName) : Path.GetDirectoryName(Path.Combine(Directory.GetCurrentDirectory(), this.OutputFile.OriginalPath())); 417var outputFile = this.OutputFile?.OriginalPath();
Shared\Options\UpdateOptions.cs (5)
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()));
Tool.cs (2)
145if (!File.Exists(options.OutputFile.FullName)) 268PathHelper.IsUnderDirectory(options.OutputFile.FullName, new DirectoryInfo(options.Project.DirectoryPath), out var filePath, out var relPath);