Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 484 Bytes

File metadata and controls

18 lines (15 loc) · 484 Bytes

Add Required Modules for Azure Functions automatically

In requirements.psd1

For example adding some Graph SDK modules

# This file enables modules to be automatically managed by the Functions service.
# See https://aka.ms/functionsmanageddependency for additional information.
#
@{
    'Az' = '5.*'
    'JWTDetails' = '1.*'
    'Microsoft.Graph.Authentication' = '1.2'
    'Microsoft.Graph.Users' = '1.2'
    'Microsoft.Graph.Identity.Signins' = '1.2'
}