3 writes to FullFilePath
Microsoft.VisualStudio.LanguageServices (3)
GenerateType\GenerateTypeDialogViewModel.cs (3)
269
this.
FullFilePath
= implicitFilePath + @"\" + trimmedFileName;
273
this.
FullFilePath
= Path.GetFullPath(this.FullFilePath);
290
this.
FullFilePath
= string.Join("\\", fileNameInFullPathInContainers.Select(str => str.Trim()));
11 references to FullFilePath
Microsoft.VisualStudio.LanguageServices (11)
GenerateType\GenerateTypeDialogViewModel.cs (10)
273
this.FullFilePath = Path.GetFullPath(this.
FullFilePath
);
282
var lastIndexOfSeparatorInFullPath = this.
FullFilePath
.LastIndexOf('\\');
285
var fileNameInFullPathInContainers = this.
FullFilePath
.Split(['\\'], StringSplitOptions.RemoveEmptyEntries);
303
if (this.
FullFilePath
.StartsWith(projectRootPath, StringComparison.Ordinal))
306
var folderPath = this.
FullFilePath
[projectRootPath.Length..];
338
var lastIndexOfSeparator = this.
FullFilePath
.LastIndexOf('\\');
345
_fileName = this.
FullFilePath
[(lastIndexOfSeparator + 1)..];
349
if (this.
FullFilePath
.Split(['\\'], StringSplitOptions.RemoveEmptyEntries).Any(s => _reservedKeywords.Contains(s, StringComparer.OrdinalIgnoreCase)))
357
if (this.SelectedProject.Documents.Where(n => n != null).Where(n => n.FilePath ==
FullFilePath
).Any() ||
360
File.Exists(
FullFilePath
))
GenerateType\VisualStudioGenerateTypeOptionsServiceFactory.cs (1)
77
fullFilePath: viewModel.
FullFilePath
,