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