Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Composer/packages/lib/bot-deploy/src/botProjectDeploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ export class BotProjectDeploy {
// perform the dotnet publish command
// this builds the app and prepares it to be deployed
// results in a built copy in publishFolder/
await exec(`dotnet publish ${this.dotnetProjectPath} -c release -o ${publishFolder} -v q`);
await exec(`dotnet publish "${this.dotnetProjectPath}" -c release -o "${publishFolder}" -v q`);
const remoteBotPath = path.join(publishFolder, 'ComposerDialogs');
const localBotPath = path.join(projFolder, 'ComposerDialogs');
// Then, copy the declarative assets into the build folder.
Expand Down