fix project path mapping

This commit is contained in:
Matt Parker
2025-08-03 02:28:38 +10:00
parent 540a1f6a25
commit fceafbd194

View File

@@ -32,7 +32,7 @@ public static class VsPersistenceMapper
private static SharpIdeProjectModel GetSharpIdeProjectModel(IntermediateProjectModel projectModel) => new SharpIdeProjectModel
{
Name = projectModel.Model.ActualDisplayName,
FilePath = projectModel.Model.FilePath,
FilePath = projectModel.FullFilePath,
Files = TreeMapperV2.GetFiles(projectModel.FullFilePath),
Folders = TreeMapperV2.GetSubFolders(projectModel.FullFilePath)