Debug profile does not exists error after VS 2019 update when running azure function
H

4

5

Can't debug azure function from Visual Studio 2019 after updating to version 16.10.0. Getting following error.

enter image description here

enter image description here

Helpmeet answered 2/6, 2021 at 3:45 Comment(0)
H
6

The problem with this issue was it is not properly installed that referenced version of Azure Function Tools. So when it was downloaded partially it is not even trying to re-install it. So I was able to re-install it by doing the following workaround.

  1. Removed the existing installation folder (C:\Users\SithiraP\AppData\Local\AzureFunctionsTools\Releases\3.23.4)

  2. Created a new Azure Function app from visual studio. (It is downloading again Azure Function Tools when creating a new Azure function project)

Helpmeet answered 2/6, 2021 at 13:27 Comment(3)
Thank you very much. That answer worked for me. I deleted the folder and reran my Function. That's all!Ferrol
@Ferrol could you please set this as Accepted answerHelpmeet
This is not my question, I'm sorry. I could only vote positivelyFerrol
W
5

I faced the issue recently and tried to download again the tools but it wasn't working even after the download. So I found out that the installation path was

...\Releases\3.23.5\cli\...

and I copied the same cli folder and renamed it to cli_x64

...\Releases\3.23.5\cli_x64\...

and it worked fine

Wise answered 17/8, 2021 at 17:51 Comment(3)
Where do you find the installation path?Gabar
You may check in you ...AppData\Local\AzureFunctionsTools\Releases\3.23.5 @GabarWise
Is there anywhere I could download the 64bit files that are required for it?Gabar
E
1

I copied all folders from 3.28.1 into 3.23.5 and it worked for me since 3.28.1 had cli_x64

Enfeoff answered 1/9, 2021 at 5:59 Comment(1)
This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker.Highclass
P
0

i found cli_64 folder is missing there so I copied this folder from 3.28.1 folder and pasted into 3.20 folder it worked for me

Pentode answered 2/3, 2022 at 14:32 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.