1
votes

so I have an excel add-in that's a task pane with a few custom functions thrown in. I have debugging set up in my local excel 365 installation through the Edge DevTools (As per this guide: https://docs.microsoft.com/en-us/office/dev/add-ins/testing/debug-add-ins-using-f12-developer-tools-on-windows-10#debug-using-microsoft-edge-devtools). I've also edited my manifest to use a shared runtime, as per this guide: https://docs.microsoft.com/en-us/office/dev/add-ins/excel/configure-your-add-in-to-use-a-shared-runtime

The problem is I still don't have access to my custom functions in the debugger, as far as I can tell. At the very least, my debugger can't find the functions.js/ts file. Maybe I've missed something obvious, but I don't see anything in the documentation that actually explains how to attach a debugger to a custom function in a shared runtime.

Any help would be much appreciated.

1

1 Answers

1
votes

Have you included your functions.js in your taskpane.html? To have your custom functions work in shared runtime and debug them, you must include your functions.js in your html file.