We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 641309c commit 26add29Copy full SHA for 26add29
packages/cli/src/languagePlugins/csharp/projectMapper/index.ts
@@ -104,15 +104,15 @@ export class CSharpProjectMapper {
104
for (let j = 1; j < splitPaths.length; j++) {
105
if (splitPaths[j][i] !== commonPath[i]) {
106
commonPath.splice(i);
107
- let rootFolder = join(...commonPath);
+ let rootFolder = join("", ...commonPath);
108
if (filepaths[0].startsWith(SEPARATOR)) {
109
rootFolder = SEPARATOR + rootFolder;
110
}
111
return rootFolder;
112
113
114
115
116
117
118
0 commit comments