Added assembly name and root namespace to project file; updated session and vlan classes with new properties; modified module manifest to reference DLL and updated exported cmdlets; corrected property name in address class.

This commit is contained in:
2026-01-19 14:45:31 +03:00
parent 010cce0fd8
commit 114267b1d5
26 changed files with 2512 additions and 8 deletions

View File

@@ -6,7 +6,7 @@
#
@{
RootModule = 'ps.ipam.psm1'
RootModule = 'ps.ipam.dll'
ModuleVersion = '2.0'
GUID = 'cd573493-4245-4073-a238-fab2251d78d0'
Author = 'Nikolay Tatarinov'
@@ -15,14 +15,14 @@
PowerShellVersion = '5.1'
RequiredAssemblies = @(
'classlib\bin\Release\netstandard2.1\publish\classlib.dll'
'ps.ipam.dll'
)
TypesToProcess = @(
'types\types.ps1xml'
)
FunctionsToExport = @(
CmdletsToExport = @(
'Assign-Tag',
'Close-Session',
'New-Session',
@@ -41,6 +41,7 @@
'New-Address',
'New-FirstFreeIP',
'Set-Address',
'Set-Subnet',
'Remove-Address'
)
# 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.