Skip to content

Commit 89b6ce9

Browse files
Clean up package metadata (#36)
As in title, getting ready for public preview release. --------- Co-authored-by: Michael Peng <[email protected]>
1 parent 964747a commit 89b6ce9

File tree

1 file changed

+14
-65
lines changed

1 file changed

+14
-65
lines changed
Lines changed: 14 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
@{
2-
3-
# Script module or binary module file associated with this manifest.
4-
# RootModule = ''
5-
1+
@{
62
# Version number of this module.
7-
ModuleVersion = '0.0.2'
3+
ModuleVersion = '1.0.0'
84

95
# Supported PSEditions
106
CompatiblePSEditions = @('Core')
@@ -22,43 +18,19 @@
2218
Copyright = '(c) Microsoft Corporation. All rights reserved.'
2319

2420
# Description of the functionality provided by this module
25-
Description = 'Alpha release of the Durable Functions SDK for PowerShell. This package is to be used exclusively with the Azure Functions PowerShell worker.'
21+
Description = 'Initial release of the Durable Functions SDK for PowerShell. This package is to be used exclusively with the Azure Functions PowerShell worker.'
2622

2723
# Minimum version of the PowerShell engine required by this module
2824
PowerShellVersion = '7.2'
2925

30-
# Name of the PowerShell host required by this module
31-
# PowerShellHostName = ''
32-
33-
# Minimum version of the PowerShell host required by this module
34-
# PowerShellHostVersion = ''
35-
36-
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
37-
# DotNetFrameworkVersion = ''
38-
39-
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
40-
# ClrVersion = ''
41-
42-
# Processor architecture (None, X86, Amd64) required by this module
43-
# ProcessorArchitecture = ''
44-
45-
# Modules that must be imported into the global environment prior to importing this module
46-
# RequiredModules = @()
47-
48-
# Assemblies that must be loaded prior to importing this module
49-
# RequiredAssemblies = @()
50-
51-
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
52-
# ScriptsToProcess = @()
53-
5426
# Type files (.ps1xml) to be loaded when importing this module
55-
# TypesToProcess = @()
27+
# TypesToProcess = @() # TODO: use this for pretty-printing DF tasks
5628

5729
# Format files (.ps1xml) to be loaded when importing this module
58-
# FormatsToProcess = @()
30+
# FormatsToProcess = @() # TODO: use this for pretty-printing DF tasks
5931

6032
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
61-
NestedModules = @('.\AzureFunctions.PowerShell.Durable.SDK.dll', '.\AzureFunctions.PowerShell.Durable.SDK.psm1')
33+
NestedModules = @('./AzureFunctions.PowerShell.Durable.SDK.dll', './AzureFunctions.PowerShell.Durable.SDK.psm1')
6234

6335
# 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.
6436
FunctionsToExport = @(
@@ -95,52 +67,29 @@
9567
'New-DurableRetryOptions'
9668
)
9769

98-
# DSC resources to export from this module
99-
# DscResourcesToExport = @()
100-
101-
# List of all modules packaged with this module
102-
# ModuleList = @()
103-
104-
# List of all files packaged with this module
105-
# FileList = @()
106-
10770
# 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.
10871
PrivateData = @{
10972

11073
PSData = @{
11174

11275
# Tags applied to this module. These help with module discovery in online galleries.
113-
# Tags = @()
76+
Tags = @('Microsoft', 'Azure', 'Functions', 'Serverless', 'Cloud', 'Workflows', 'Durable', 'DurableTask')
11477

11578
# A URL to the license for this module.
116-
# LicenseUri = ''
79+
LicenseUri = 'https://github.com/Azure/azure-functions-durable-powershell/blob/main/LICENSE'
11780

11881
# A URL to the main website for this project.
119-
# ProjectUri = ''
120-
121-
# A URL to an icon representing this module.
122-
# IconUri = ''
82+
ProjectUri = 'https://github.com/Azure/azure-functions-durable-powershell'
12383

12484
# ReleaseNotes of this module
125-
# ReleaseNotes = ''
85+
# ReleaseNotes = '' #TODO: add release notes.
12686

12787
# Prerelease string of this module
128-
Prerelease = 'alpha'
129-
130-
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
131-
# RequireLicenseAcceptance = $false
132-
133-
# External dependent modules of this module
134-
# ExternalModuleDependencies = @()
88+
Prerelease = 'alpha' # TODO: remove alpha on initial release.
13589

13690
} # End of PSData hashtable
137-
138-
} # End of PrivateData hashtable
139-
91+
} # End of PrivateData hashtable
92+
14093
# HelpInfo URI of this module
141-
# HelpInfoURI = ''
142-
143-
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
144-
# DefaultCommandPrefix = ''
145-
94+
# HelpInfoURI = '' # TODO: explore
14695
}

0 commit comments

Comments
 (0)