In Visual Studio when you start debugging an Azure Function locally, it downloads/installs the Azure Functions CLI (aka Azure Functions Core Tools). It does this automatically, what is doing it and where does it store it? I believe it is only doing this once. Not sure how updates occur.
Asked
Active
Viewed 1,956 times
5
-
why do you nedd this information for ? – Thomas Jan 26 '20 at 11:20
-
1Because when attempting to run locally the cli reported missing (couldn’t find or couldn’t find matching version) assembly which appears to part of the cli tools – camios Jan 27 '20 at 22:02
1 Answers
5
On Windows, it is this folder:
%LOCALAPPDATA%\AzureFunctionsTools\
Example runtime folder for version 2.43.0, 64-bit:
C:\Users\*username*\AppData\Local\AzureFunctionsTools\Releases\2.43.0\cli_x64

camios
- 182
- 13