-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from ethanbergstrom/rewrite
Rewrite
- Loading branch information
Showing
29 changed files
with
1,459 additions
and
1,552 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"paket": { | ||
"version": "5.245.1", | ||
"commands": [ | ||
"paket" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*TestsResults.xml | ||
*.dll | ||
.paket/* | ||
packages/* |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,38 @@ | ||
@{ | ||
RootModule = 'ChocolateyGet.psm1' | ||
ModuleVersion = '1.1.0.0' | ||
GUID = 'c1735ed7-8b2f-426a-8cbc-b7feb6b8288d' | ||
Author = 'Jianyun' | ||
Copyright = '' | ||
Description = 'Package Management (OneGet) provider that facilitates installing Chocolatey packages from any NuGet repository.' | ||
# Refuse to load in CoreCLR if PowerShell below 7.0.1 due to regressions with how 7.0 loads PackageManagement DLLs | ||
# https://github.com/PowerShell/PowerShell/pull/12203 | ||
PowerShellVersion = if ($PSEdition -eq 'Core') { | ||
'7.0.1' | ||
} else { | ||
'3.0' | ||
} | ||
RequiredModules = @( | ||
@{ | ||
ModuleName='PackageManagement'; | ||
ModuleVersion='1.1.7.2' | ||
} | ||
) | ||
PrivateData = @{ | ||
PackageManagementProviders = 'ChocolateyGet.psm1' | ||
PSData = @{ | ||
# Tags applied to this module to indicate this is a PackageManagement Provider. | ||
Tags = @('PackageManagement','Provider','Chocolatey','PSEdition_Desktop','PSEdition_Core','Windows') | ||
|
||
RootModule = 'ChocolateyGet.psm1' | ||
ModuleVersion = '1.0.0' | ||
GUID = 'c1735ed7-8b2f-426a-8cbc-b7feb6b8288d' | ||
Author = 'Jianyun' | ||
Copyright = '' | ||
Description = 'An PowerShell OneGet provider that discovers packages from https://www.chocolatey.org.' | ||
PowerShellVersion = '3.0' | ||
FunctionsToExport = @('Compare-SemVer') | ||
RequiredModules = @('PackageManagement') | ||
PrivateData = @{"PackageManagementProviders" = 'ChocolateyGet.psm1' | ||
# A URL to the license for this module. | ||
LicenseUri = 'https://github.com/PowerShell/PowerShell/blob/master/LICENSE.txt' | ||
|
||
PSData = @{ | ||
# A URL to the main website for this project. | ||
ProjectUri = 'https://github.com/Jianyunt/ChocolateyGet' | ||
|
||
# Tags applied to this module to indicate this is a PackageManagement Provider. | ||
Tags = @("PackageManagement","Provider") | ||
|
||
# A URL to the license for this module. | ||
LicenseUri = 'https://github.com/PowerShell/PowerShell/blob/master/LICENSE.txt' | ||
|
||
# A URL to the main website for this project. | ||
ProjectUri = 'https://github.com/Jianyunt/ChocolateyGet' | ||
|
||
# ReleaseNotes of this module | ||
ReleaseNotes = 'This is a PowerShell OneGet provider. It is a wrapper on top of Choco. | ||
It discovers packages from https://www.chocolatey.org. | ||
' | ||
} # End of PSData | ||
} | ||
# ReleaseNotes of this module | ||
ReleaseNotes = 'This is a PowerShell OneGet provider. It is a wrapper on top of Choco. | ||
It discovers Chocolatey packages from https://www.chocolatey.org and other NuGet repos.' | ||
} | ||
} | ||
} | ||
|
Oops, something went wrong.