SMBBlueprint.psd1
@{ RootModule = 'SMBBlueprint.psm1'; ModuleVersion = '0.0.0.3'; GUID = '83bc0698-c6b4-486a-a8e5-5e585038928d'; Author = 'Jan Van Meirvenne','Stijn Callebaut'; CompanyName = 'Inovativ BE'; Copyright = '(c) 2016 Inovativ BE. All rights reserved.'; Description = 'Deployment Framework for the Microsoft SMB Azure & O365 solution. NOT READY FOR PRODUCTION!'; PowerShellVersion = '3.0'; FunctionsToExport = '*' RequiredModules = @( @{ModuleName="Microsoft.Online.SharePoint.PowerShell";ModuleVersion="16.0.5806.0";Guid="adedde5f-e77b-4682-ab3d-a4cb4ff79b83"}, @{ModuleName="AzureRM.Profile";ModuleVersion="1.0.11";Guid="342714fc-4009-4863-8afb-a9067e3db04b"}, @{ModuleName="AzureRM.Resources";ModuleVersion="1.0.11";Guid="ab3ca893-26fe-44b0-bd3c-8933df144d7b"}, @{ModuleName="MSOnline";ModuleVersion="1.0";Guid="d162594e-d7aa-42be-9884-84928d3f7acf"} ) PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @('SMB','Office365','Azure','AzureRM') # A URL to the license for this module. # LicenseUri = '' # A URL to the main website for this project. ProjectUri = 'https://github.com/Inovativ/SMBblueprint-PowerShell' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module ReleaseNotes = @( '0.0.0.1: Initial preview, not production ready!', '0.0.0.3: Publishing test with VSO build automation. Logging capabilities optimized. Added -MailDomain switch to Office Deployment function.' ) ExternalModuleDependencies = @('Microsoft.Online.SharePoint.PowerShell') } # End of PSData hashtable } # End of PrivateData hashtable } |