3 writes to FullFilePath
Microsoft.VisualStudio.LanguageServices (3)
GenerateType\GenerateTypeDialogViewModel.cs (3)
288
this.
FullFilePath
= implicitFilePath + @"\" + trimmedFileName;
292
this.
FullFilePath
= Path.GetFullPath(this.FullFilePath);
309
this.
FullFilePath
= string.Join("\\", fileNameInFullPathInContainers.Select(str => str.Trim()));
11 references to FullFilePath
Microsoft.VisualStudio.LanguageServices (11)
GenerateType\GenerateTypeDialogViewModel.cs (10)
292
this.FullFilePath = Path.GetFullPath(this.
FullFilePath
);
301
var lastIndexOfSeparatorInFullPath = this.
FullFilePath
.LastIndexOf('\\');
304
var fileNameInFullPathInContainers = this.
FullFilePath
.Split(new[] { '\\' }, StringSplitOptions.RemoveEmptyEntries);
322
if (this.
FullFilePath
.StartsWith(projectRootPath, StringComparison.Ordinal))
325
var folderPath = this.
FullFilePath
[projectRootPath.Length..];
357
var lastIndexOfSeparator = this.
FullFilePath
.LastIndexOf('\\');
364
_fileName = this.
FullFilePath
[(lastIndexOfSeparator + 1)..];
368
if (this.
FullFilePath
.Split(new[] { '\\' }, StringSplitOptions.RemoveEmptyEntries).Any(s => _reservedKeywords.Contains(s, StringComparer.OrdinalIgnoreCase)))
376
if (this.SelectedProject.Documents.Where(n => n != null).Where(n => n.FilePath ==
FullFilePath
).Any() ||
379
File.Exists(
FullFilePath
))
GenerateType\VisualStudioGenerateTypeOptionsServiceFactory.cs (1)
77
fullFilePath: viewModel.
FullFilePath
,