-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathPSMDTemplate.ps1
More file actions
11 lines (11 loc) · 681 Bytes
/
PSMDTemplate.ps1
File metadata and controls
11 lines (11 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
@{
TemplateName = 'AzureFunction'
Version = "2.0.5"
AutoIncrementVersion = $true
Tags = 'azure', 'function'
Author = 'Friedrich Weinmann'
Description = 'Scaffold for a PowerShell Azure Functions app: base folder layout, sample function entry point and build hooks ready for adding specific triggers'
Exclusions = @("PSMDInvoke.ps1", ".PSMDDependency") # Contains list of files - relative path to root - to ignore when building the template
Scripts = @{ }
NoFolder = $true # Whether invoking this template should generate a new folder ... or not.
}