We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6484033 commit 7077fdfCopy full SHA for 7077fdf
src/resource/createProjectWebView/CreateProject.ts
@@ -137,8 +137,13 @@ export class CreateProjectPanel {
137
}
138
139
private static async projectCreation(message: Message) {
140
+ // Adjust filepath from the default or selection
141
message.filepath = this._filepath;
142
143
+ // Remove spaces from project and solution names
144
+ message.solution = message.solution.replace(/\s+/g, "");
145
+ message.project = message.project.replace(/\s+/g, "");
146
+
147
if (fs.existsSync(this._filepath + "\\" + message.solution)) {
148
vscode.window.showErrorMessage("Solution folder already exist");
149
return;
0 commit comments