In visual studio I have created an Azure Function App with several Function.
When I launch the Function App debugger from the tool bar all Functions are triggered.
Is there a way to trigger a single function from the App within Visual Studio 2017?
There is no easy way to achieve this, but it is possible.
by modifying the function.json file:
"bindings": [
...
],
"disabled": true
or by using the [Disable] attribute:
[Disable]
[FunctionName("Function")]
[NoAutomaticTrigger]
public static void Function(string input, TraceWriter log)
{ }
Run function using command: func run <functionName>
In your host.json file specify functions that should be run:
{
"functions":[ "FunctionToRun" ]
}