Skip to content

Commit 54591d3

Browse files
committed
nest module in IniConverter for publishing purposes
1 parent cd42922 commit 54591d3

18 files changed

Lines changed: 160 additions & 128 deletions

module/IniConverter.psd1

-8.99 KB
Binary file not shown.
File renamed without changes.
Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
#
2+
# Module manifest for module 'IniConverter'
3+
#
4+
# Generated by: Joseph Iannone
5+
#
6+
# Generated on: 2/3/2023
7+
#
8+
9+
@{
10+
11+
# Script module or binary module file associated with this manifest.
12+
RootModule = 'IniConverter.psm1'
13+
14+
# Version number of this module.
15+
ModuleVersion = '1.1.3'
16+
17+
# Supported PSEditions
18+
# CompatiblePSEditions = @()
19+
20+
# ID used to uniquely identify this module
21+
GUID = 'da732a2a-3e86-4627-b44e-7a3c5b586695'
22+
23+
# Author of this module
24+
Author = 'Joseph Iannone'
25+
26+
# Company or vendor of this module
27+
CompanyName = 'Joseph Iannone'
28+
29+
# Copyright statement for this module
30+
Copyright = '(c) 2023 Joseph Iannone. All rights reserved.'
31+
32+
# Description of the functionality provided by this module
33+
Description = 'A PowerShell module for parsing, converting, and managing ini file properties'
34+
35+
# Minimum version of the Windows PowerShell engine required by this module
36+
# PowerShellVersion = ''
37+
38+
# Name of the Windows PowerShell host required by this module
39+
# PowerShellHostName = ''
40+
41+
# Minimum version of the Windows 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+
62+
# Type files (.ps1xml) to be loaded when importing this module
63+
# TypesToProcess = @()
64+
65+
# Format files (.ps1xml) to be loaded when importing this module
66+
# FormatsToProcess = @()
67+
68+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
69+
# NestedModules = @()
70+
71+
# 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.
72+
FunctionsToExport = @(
73+
'ConvertFrom-Ini',
74+
'ConvertTo-Ini',
75+
'Add-IniProperty',
76+
'Remove-IniProperty'
77+
)
78+
79+
# 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.
80+
# CmdletsToExport = @()
81+
82+
# Variables to export from this module
83+
VariablesToExport = '*'
84+
85+
# 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+
AliasesToExport = @()
87+
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+
'lib\ConvertIni\ConvertIni.dll',
97+
'Public\ConvertFrom-Ini.ps1',
98+
'Public\ConvertTo-Ini.ps1',
99+
'Public\Add-IniProperty.ps1',
100+
'Public\Remove-IniProperty.ps1',
101+
'tests\ConvertFrom-Ini.Test.ps1',
102+
'tests\ConvertTo-Ini.Test.ps1',
103+
'tests\Add-IniProperty.Test.ps1',
104+
'tests\Remove-IniProperty.Test.ps1',
105+
'tests\test_input_001.ini',
106+
'IniConverter.psd1',
107+
'IniConverter.psm1',
108+
'README.md'
109+
)
110+
111+
# 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.
112+
PrivateData = @{
113+
114+
PSData = @{
115+
116+
# Tags applied to this module. These help with module discovery in online galleries.
117+
Tags = @('INI', 'configuration', 'initialization', 'ConvertFrom', 'ConvertTo', 'Add', 'Remove')
118+
119+
# A URL to the license for this module.
120+
LicenseUri = 'https://github.com/joeiannone/Convert-Ini/blob/master/LICENSE'
121+
122+
# A URL to the main website for this project.
123+
ProjectUri = 'https://github.com/joeiannone/Convert-Ini'
124+
125+
# A URL to an icon representing this module.
126+
# IconUri = ''
127+
128+
# ReleaseNotes of this module
129+
# ReleaseNotes = ''
130+
131+
} # End of PSData hashtable
132+
133+
} # End of PrivateData hashtable
134+
135+
# HelpInfo URI of this module
136+
# HelpInfoURI = ''
137+
138+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
139+
# DefaultCommandPrefix = ''
140+
141+
}
142+
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

module/IniConverter/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Convert-Ini
2+
![Tests](https://github.com/joeiannone/Convert-Ini/actions/workflows/tests.yml/badge.svg)
3+
### A PowerShell module for parsing, converting, and managing ini file properties
4+
5+
You can find the latest releases and downloads for this module in the PowerShell Gallery: [https://www.powershellgallery.com/packages/IniConverter](https://www.powershellgallery.com/packages/IniConverter)
6+
7+
8+
### Installation
9+
```powershell
10+
PS > Install-Module -Name IniConverter
11+
```
12+
---
13+
14+
#### Exported PowerShell Functions:
15+
- ```ConvertFrom-Ini```
16+
- ```ConvertTo-Ini```
17+
- ```Add-IniProperty```
18+
- ```Remove-IniProperty```
File renamed without changes.

0 commit comments

Comments
 (0)