You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a new Powershell Azure Function with the Az Fx Ext API, it does not ask for the name automatically when not providing the functionName. This parameter is considered optional
It only asks for the trigger type and then access level (2 steps):
Creation still happened, but it leads to a malformed Pwsh functions project. This error will pop up:
And this is what the project looks like after creation. The function was not made:
A workaround is to ask the user using a VSCode quick pick before creation happens - but this is out of order because we would want to know the trigger type before the name. Note this only happens in Pwsh - in Python and Node I can confirm it will ask for the function name from the user if not provided and works as expected
The text was updated successfully, but these errors were encountered:
When creating a new Powershell Azure Function with the Az Fx Ext API, it does not ask for the name automatically when not providing the functionName. This parameter is considered optional
It only asks for the trigger type and then access level (2 steps):
Creation still happened, but it leads to a malformed Pwsh functions project. This error will pop up:
And this is what the project looks like after creation. The function was not made:
A workaround is to ask the user using a VSCode quick pick before creation happens - but this is out of order because we would want to know the trigger type before the name. Note this only happens in Pwsh - in Python and Node I can confirm it will ask for the function name from the user if not provided and works as expected
The text was updated successfully, but these errors were encountered: