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