Skip to content

Commit

Permalink
Merge master into feature/emr
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-toolkit-automation committed May 24, 2024
2 parents 0152ef9 + 388b656 commit 511ec72
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/core/src/shared/sam/debugger/csharpSamDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,10 @@ export async function invokeCsharpLambda(ctx: ExtContext, config: SamLaunchReque
config.samLocalInvokeCommand = new DefaultSamLocalInvokeCommand([waitForDebuggerMessages.DOTNET])
// eslint-disable-next-line @typescript-eslint/unbound-method
config.onWillAttachDebugger = waitForPort
const platformArchitecture = os.arch()

if (!config.noDebug) {
if (config.architecture === 'arm64') {
if ([config.architecture, platformArchitecture].includes('arm64')) {
void vscode.window.showWarningMessage(
localize(
'AWS.sam.noArm.dotnet.debug',
Expand Down

0 comments on commit 511ec72

Please sign in to comment.