3 writes to OutputFile
dotnet-svcutil-lib (3)
CommandProcessorOptions.cs (1)
457
this.
OutputFile
= new FileInfo(outputFile);
Shared\Options\UpdateOptions.cs (2)
91
this.
OutputFile
= new FileInfo(relPath);
109
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)
389
workingDirectory = Path.IsPathRooted(this.
OutputFile
.OriginalPath()) ?
390
Path.GetDirectoryName(this.
OutputFile
.FullName) : Path.GetDirectoryName(Path.Combine(Directory.GetCurrentDirectory(), this.
OutputFile
.OriginalPath()));
419
var outputFile = this.
OutputFile
?.OriginalPath();
Shared\Options\UpdateOptions.cs (5)
89
if (this.
OutputFile
!= null && PathHelper.GetRelativePath(this.
OutputFile
.OriginalPath(), optionsFileDirectory, out var relPath))
107
if (this.
OutputFile
!= null && !Path.IsPathRooted(this.
OutputFile
.OriginalPath()))
109
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);