WindowsPath.psd1
@{ RootModule = 'WindowsPath.psm1' ModuleVersion = '0.0.1' GUID = '75cebe01-d18c-4d4c-9e00-c65c6821ad07' Author = 'Fabrice Sanga' CompanyName = 'sangafabrice' Copyright = '© 2024 SangaFabrice. All rights reserved.' Description = 'The WindowsPath type performs operations on string instances that contain valid Windows File System path information. The specified path or file name string may point to a nonexistent file system object that is nonetheless valid and may carry information about locally or network shared files and directories. The module also provides two validation attributes ValidateWindowsPath and ValidateWindowsFileName. → To support this project, please visit and like: https://github.com/sangafabrice/windows-path-type' PowerShellVersion = '7.0' PowerShellHostVersion = '7.0' FunctionsToExport = @() CmdletsToExport = @() AliasesToExport = @() FileList = 'WindowsPath.psd1','WindowsPath.psm1' PrivateData = @{ PSData = @{ Tags = 'windows-path','type','file-name','validator' LicenseUri = 'https://github.com/sangafabrice/windows-path-type/blob/module/LICENSE.md' ProjectUri = 'https://github.com/sangafabrice/windows-path-type' IconUri = 'https://gistcdn.githack.com/sangafabrice/a8c75d6031a491c0907d5ca5eb5587e0/raw/406120be7a900c3998e33d7302772827f20539f0/automation.svg' ReleaseNotes = 'This release is to test the GitHub action workflow.' } } } |