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
Update to use variables instead of duplicated strings
Support authtoken since it's pretty easy to hit Github limits on API call
Use Invoke-RestMethod consistently (rather than Invoke-WebRequest in places)
Copyright='Copyright (c) Microsoft Corporation. All rights reserved.'
31
31
32
32
# Description of the functionality provided by this module
33
33
# Description = ''
34
34
35
-
# Minimum version of the PowerShell engine required by this module
36
-
# PowerShellVersion = ''
37
-
38
-
# Name of the PowerShell host required by this module
39
-
# PowerShellHostName = ''
40
-
41
-
# Minimum version of the PowerShell host required by this module
42
-
# PowerShellHostVersion = ''
43
-
44
-
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
45
-
# DotNetFrameworkVersion = ''
46
-
47
-
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
48
-
# CLRVersion = ''
49
-
50
-
# Processor architecture (None, X86, Amd64) required by this module
51
-
# ProcessorArchitecture = ''
52
-
53
-
# Modules that must be imported into the global environment prior to importing this module
54
-
# RequiredModules = @()
55
-
56
-
# Assemblies that must be loaded prior to importing this module
57
-
# RequiredAssemblies = @()
58
-
59
-
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
60
-
# ScriptsToProcess = @()
61
35
62
36
# Type files (.ps1xml) to be loaded when importing this module
63
37
TypesToProcess=@('RFC.Types.ps1xml')
64
38
65
39
# Format files (.ps1xml) to be loaded when importing this module
66
40
FormatsToProcess=@('RFC.Formats.ps1xml')
67
41
68
-
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
69
-
# NestedModules = @()
70
-
71
42
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
@@ -85,45 +57,15 @@ VariablesToExport = '*'
85
57
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
86
58
AliasesToExport=@()
87
59
88
-
# DSC resources to export from this module
89
-
# DscResourcesToExport = @()
90
-
91
-
# List of all modules packaged with this module
92
-
# ModuleList = @()
93
-
94
-
# List of all files packaged with this module
95
-
# FileList = @()
96
-
97
60
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
98
61
PrivateData=@{
99
62
100
63
PSData=@{
101
64
102
-
# Tags applied to this module. These help with module discovery in online galleries.
103
-
# Tags = @()
104
-
105
-
# A URL to the license for this module.
106
-
# LicenseUri = ''
107
-
108
-
# A URL to the main website for this project.
109
-
# ProjectUri = ''
110
-
111
-
# A URL to an icon representing this module.
112
-
# IconUri = ''
113
-
114
-
# ReleaseNotes of this module
115
-
# ReleaseNotes = ''
116
-
117
65
} # End of PSData hashtable
118
66
119
67
} # End of PrivateData hashtable
120
68
121
-
# HelpInfo URI of this module
122
-
# HelpInfoURI = ''
123
-
124
-
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
0 commit comments