private string GetPresentablePath(FileSystemPath assetFile) { var solutionFolder = mySolution.SolutionFile?.Location.Parent; if (solutionFolder != null && solutionFolder.IsPrefixOf(assetFile)) { return(assetFile.MakeRelativeTo(solutionFolder).FullPath); } return(null); }