-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWinGetBootstrap.psd1
More file actions
31 lines (27 loc) · 1.05 KB
/
WinGetBootstrap.psd1
File metadata and controls
31 lines (27 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@{
# Script module manifest for WinGetBootstrap
RootModule = 'WinGetBootstrap.psm1'
ModuleVersion = '1.0.1'
GUID = 'e1b8c2f9-3d4e-4f2b-a4b2-5f88a9d5e8c7'
Author = 'Jon Agramonte'
CompanyName = 'Clemson University CCIT'
Description = 'Bootstraps the NuGet provider and installs/repairs the Microsoft.WinGet.Client module.'
# Functions to export from this module
FunctionsToExport = @(
'Install-NuGetProvider',
'Install-WinGetModule'
)
CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()
# Private data for this module
PrivateData = @{
PSData = @{
Tags = @('PowerShell','NuGet','WinGet','Bootstrap')
LicenseUri = 'https://opensource.org/licenses/MIT'
ProjectUri = 'https://github.com/CU-Jon/WinGetBootstrap'
RepositoryUrl= 'https://github.com/CU-Jon/WinGetBootstrap'
ReleaseNotes = 'Initial release of WinGetBootstrap module.'
}
}
}