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
A lot of workflow updates. some minor updates to code (#6)
* + gray-ish color for event nodes; node size is 8 by default
* + pester tests step
* remove some folders from build
* update publish workflow
* troubleshooting pester tests
* more troubleshooting
* still troubleshooting
* trying to fix tests to run on github actions
* another test
* one more test
* few more tests
* another attempt
* try again
* few more updates to the workflow
* + pipeline for publishig common library
* bump minor version for testing
* fixing version suffix
* new publish pipeline
* fix some issues with the pipeline
* few more fixes as 'v' in front of a version cannot be converted to System.Version
* keep fixing version processing for PS anifest
* disable auto-start by now
* keep fighting with version
* was failing to load .net sdk. setting it up
* update powershell version on the runner
* make sure we have correct suffix
* ci: update module version to 2.3.1
* combining common package and module publishing
* ci: update module version to 2.3.1
* fixing issues with wrong suffux of a .net package
* ci: update module version to 2.3.1
* sync module version and common package version for simplicity
* another attempt
* fix syntax
* ci: update module version to 2.3.1
---------
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
61
+
# ScriptsToProcess = @()
62
+
63
+
# Type files (.ps1xml) to be loaded when importing this module
64
+
# TypesToProcess = @()
65
+
66
+
# Format files (.ps1xml) to be loaded when importing this module
67
+
# FormatsToProcess = @()
68
+
69
+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
70
+
# NestedModules = @()
71
+
72
+
# 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.
73
+
FunctionsToExport=@()
74
+
75
+
# 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.
76
+
CmdletsToExport=@("*")
77
+
78
+
# Variables to export from this module
79
+
VariablesToExport='*'
80
+
81
+
# 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.
82
+
AliasesToExport=@()
83
+
84
+
# DSC resources to export from this module
85
+
# DscResourcesToExport = @()
86
+
87
+
# List of all modules packaged with this module
88
+
# ModuleList = @()
89
+
90
+
# List of all files packaged with this module
91
+
# FileList = @()
92
+
93
+
# 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.
94
+
PrivateData=@{
95
+
96
+
PSData=@{
97
+
Prerelease='beta6'
98
+
# Tags applied to this module. These help with module discovery in online galleries.
99
+
# Tags = @()
100
+
101
+
# A URL to the license for this module.
102
+
# LicenseUri = ''
103
+
104
+
# A URL to the main website for this project.
105
+
ProjectUri='https://github.com/eosfor/PSGraph'
106
+
107
+
# A URL to an icon representing this module.
108
+
# IconUri = ''
109
+
110
+
# ReleaseNotes of this module
111
+
# ReleaseNotes = ''
112
+
113
+
} # End of PSData hashtable
114
+
115
+
} # End of PrivateData hashtable
116
+
117
+
# HelpInfo URI of this module
118
+
# HelpInfoURI = ''
119
+
120
+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
0 commit comments