I'm writing a C# Azure function via Visual Studio. This function is triggered through blog storage, and the blob is processed using an x64 C++ DLL.
The issue is that the default Azure functions tooling installed with visual studio only has an x86 version of the functions exe (func.exe).
I see at this URL, there are now x64 builds: https://github.com/Azure/azure-functions-core-tools/releases
The problem is, by default, Visual Studio is picking version 1.2.0 of the tools on my machine (C:\Users\acardy\AppData\Local\AzureFunctionsTools\Releases\1.2.0), and I don't see a 1.2.0 x64 release at the URL.
Is there any way to get Visual Studio to choose a different version that I could then patch with an x64 build?
I'm currently running Visual Studio version 15.7.1.
Thanks.