From f09d0bc9ef0f50c26cb820c818582a6c024e17d0 Mon Sep 17 00:00:00 2001 From: Rob Reynolds Date: Wed, 25 Jun 2014 10:41:31 -0500 Subject: [PATCH] sharpkeys 3.5.0 --- sharpkeys/sharpkeys.nuspec | 17 ++++++++--------- sharpkeys/tools/chocolateyInstall.ps1 | 7 ++++++- sharpkeys/tools/install.ps1 | 8 -------- 3 files changed, 14 insertions(+), 18 deletions(-) delete mode 100644 sharpkeys/tools/install.ps1 diff --git a/sharpkeys/sharpkeys.nuspec b/sharpkeys/sharpkeys.nuspec index eeb9064..d3c66e1 100644 --- a/sharpkeys/sharpkeys.nuspec +++ b/sharpkeys/sharpkeys.nuspec @@ -2,19 +2,18 @@ sharpkeys - sharpkeys - 3.0 + SharpKeys + 3.5.0 Randy - chrisortman - sharpkeys - sharpkeys - http://www.randyrants.com/2008/12/sharpkeys_30.html - sharpkeys admin + chrisortman, ferventcoder + SharpKeys is a utility that manages a Registry key that allows Windows to remap one key to any other key. + SharpKeys is a utility that manages a Registry key that allows Windows to remap one key to any other key. Included in the application is a list of common keyboard keys and a Type Key feature to automatically recognize most keyboard keys. It was originally developed in C# using .NET v2 but has been updated to support .NET 4.0 Client Profile + http://sharpkeys.codeplex.com/ + sharpkeys keyboard admin http://sharpkeys.codeplex.com/license false - - \ No newline at end of file + diff --git a/sharpkeys/tools/chocolateyInstall.ps1 b/sharpkeys/tools/chocolateyInstall.ps1 index 2fcb6ef..95e79a0 100644 --- a/sharpkeys/tools/chocolateyInstall.ps1 +++ b/sharpkeys/tools/chocolateyInstall.ps1 @@ -1 +1,6 @@ -Install-ChocolateyPackage 'sharpkeys' 'msi' '/S' 'http://www.randyrants.com/sharpkeys3.msi' \ No newline at end of file +$packageName = 'sharpkeys' +$packageType = 'msi' +$silentArgs = '/qn' +$url = 'http://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=sharpkeys&DownloadId=319724&FileTime=129737577110830000&Build=20911' + +Install-ChocolateyPackage "$packageName" "$packageType" "$silentArgs" "$url" diff --git a/sharpkeys/tools/install.ps1 b/sharpkeys/tools/install.ps1 deleted file mode 100644 index dd531fe..0000000 --- a/sharpkeys/tools/install.ps1 +++ /dev/null @@ -1,8 +0,0 @@ -param($installPath, $toolsPath, $package, $project) - -Write-Host 'This is not a package with dlls to reference in it.' -Write-Host 'Please install using chocolatey' -Write-Host "To get chocolatey just run 'Install-Package chocolatey' followed by 'Initialize-Chocolatey'" -Write-Host 'chocolatey install sharpkeys' -write-host 'Removing this package...' -uninstall-package sharpkeys -ProjectName $project.Name \ No newline at end of file