GithubPRBuilder.psd1
# # �������� ������ ��� ������ "PSGet_GithubPRBuilder". # # �������: kosmonavtsv@gmail.com # # ���� ��������: 04.08.2018 # @{ # ���� ������ �������� ��� ��������� ������, ��������� � ���� ����������. RootModule = '.\GithubPRBuilder.psm1' # ����� ������ ������� ������. ModuleVersion = '1.0.0.13' # �������������� ������� PSEditions # CompatiblePSEditions = @() # ���������� ������������� ������� ������ GUID = 'c72d5a3e-25d9-49c4-b5c6-57d9d94d9e56' # ����� ������� ������ Author = 'kosmonavtsv@gmail.com' # ��������, ��������� ������ ������, ��� ��� ��������� CompanyName = 'Unknown' # ��������� �� ��������� ������ �� ������ Copyright = '(c) 2018 kosmonavtsv@gmail.com.' # �������� ������� ������� ������ Description = 'Builder of github pull request' # ����������� ����� ������ ����������� Windows PowerShell, ����������� ��� ������ ������� ������ # PowerShellVersion = '' # ��� ���� Windows PowerShell, ������������ ��� ������ ������� ������ # PowerShellHostName = '' # ����������� ����� ������ ���� Windows PowerShell, ����������� ��� ������ ������� ������ # PowerShellHostVersion = '' # ����������� ����� ������ Microsoft .NET Framework, ����������� ��� ������� ������. ��� ������������ ���������� ������������� ������ ��� ������� PowerShell, ���������������� ��� �����������. # DotNetFrameworkVersion = '' # ����������� ����� ������ ����� CLR (������������ ����� ����������), ����������� ��� ������ ������� ������. ��� ������������ ���������� ������������� ������ ��� ������� PowerShell, ���������������� ��� �����������. # CLRVersion = '' # ����������� ���������� (���, X86, AMD64), ����������� ��� ����� ������ # ProcessorArchitecture = '' # ������, ������� ���������� ������������� � ���������� ����� ����� ��������������� ������� ������ RequiredModules = @('Configuration') # ������, ������� ������ ���� ��������� ����� ��������������� ������� ������ # RequiredAssemblies = @() # ����� �������� (PS1), ������� ����������� � ����� ���������� ������� ����� �������� ������� ������. # ScriptsToProcess = @() # ����� ���� (.ps1xml), ������� ����������� ��� ������� ������� ������ # TypesToProcess = @() # ����� ������� (PS1XML-�����), ������� ����������� ��� ������� ������� ������ # FormatsToProcess = @() # ������ ��� ������� � �������� ��������� ������� ������, ���������� � ��������� RootModule/ModuleToProcess # NestedModules = @() # � ����� ����������� ����������� ������������������ ������� ��� �������� �� ����� ������ �� ���������� �������������� ����� � �� ������� ������. ����������� ������ ������, ���� ��� ������� ��� ��������. FunctionsToExport = 'Update-GithubPRBuilderConfiguration', 'New-GithubPullrequest', 'Set-GithubPRBuilderConfiguration', 'Import-GithubPRBuilderConfiguration' # � ����� ����������� ����������� ������������������ ���������� ��� �������� �� ����� ������ �� ���������� �������������� ����� � �� ������� ������. ����������� ������ ������, ���� ��� ����������� ��� ��������. CmdletsToExport = @() # ���������� ��� �������� �� ������� ������ # VariablesToExport = @() # � ����� ����������� ����������� ������������������ ���������� ��� �������� �� ����� ������ �� ���������� �������������� ����� � �� ������� ������. ����������� ������ ������, ���� ��� ����������� ��� ��������. AliasesToExport = @() # ������� DSC ��� �������� �� ����� ������ # DscResourcesToExport = @() # ������ ���� �������, �������� � ����� ������� ������ # ModuleList = @() # ������ ���� ������, �������� � ����� ������� ������ # FileList = @() # ������ ������ ��� �������� � ������, ��������� � ��������� RootModule/ModuleToProcess. �� ����� ����� ��������� ���-������� PSData � ��������������� ����������� ������, ������� ������������ � PowerShell. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. # Tags = @() # A URL to the license for this module. # LicenseUri = '' # A URL to the main website for this project. # ProjectUri = '' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module # ReleaseNotes = '' # External dependent modules of this module # ExternalModuleDependencies = '' } # End of PSData hashtable } # End of PrivateData hashtable # ��� URI ��� HelpInfo ������� ������ # HelpInfoURI = '' # ������� �� ��������� ��� ������, ���������������� �� ����� ������. �������������� ������� �� ��������� � ������� ������� Import-Module -Prefix. # DefaultCommandPrefix = '' } |