Skip to content

Commit

Permalink
Merge pull request #15 from ethanbergstrom/rewrite
Browse files Browse the repository at this point in the history
Rewrite
  • Loading branch information
ethanbergstrom authored Oct 6, 2020
2 parents d1b271b + 4cb3b1f commit 5ef04d2
Show file tree
Hide file tree
Showing 29 changed files with 1,459 additions and 1,552 deletions.
12 changes: 12 additions & 0 deletions .config/dotnet-tools.json
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"
]
}
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*TestsResults.xml
*.dll
.paket/*
packages/*
Binary file modified ChocolateyGet.Resource.psd1
Binary file not shown.
60 changes: 33 additions & 27 deletions ChocolateyGet.psd1
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.'
}
}
}

Loading

0 comments on commit 5ef04d2

Please sign in to comment.