Skip to content

Commit ff20369

Browse files
committed
added the packageinformation
1 parent c650739 commit ff20369

File tree

7 files changed

+34
-0
lines changed

7 files changed

+34
-0
lines changed
366 KB
Binary file not shown.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>ChocolateyGUI</id>
5+
<version>0.1.0</version>
6+
<title>ChocolateyGUI</title>
7+
<authors>Christiaan Baes</authors>
8+
<owners>Christiaan Baes</owners>
9+
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
10+
<projectUrl>https://github.com/chrissie1/chocolatey-Explorer</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>ChocolateyGUI</description>
13+
<summary>A GUI for Chocolatey</summary>
14+
<tags>ChocolateyGUI chocolatey admin</tags>
15+
</metadata>
16+
</package>
120 KB
Binary file not shown.

ChocolateyPackage/ChocolateyGUI/tools/Setup_ChocolateyGUI.wixpdb

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.
333 KB
Binary file not shown.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
try {
2+
$scriptPath = $(Split-Path $MyInvocation.MyCommand.Path)
3+
$nodePath = Join-Path $scriptPath 'Setup_ChocolateyGUI.msi'
4+
Install-ChocolateyInstallPackage 'ChocolateyGUI' 'msi' '/quiet' $nodepath
5+
Write-ChocolateySuccess 'ChocolateyGUI'
6+
} catch {
7+
Write-ChocolateyFailure 'ChocolateyGUI' "$($_.Exception.Message)"
8+
throw
9+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
param($installPath, $toolsPath, $package, $project)
2+
3+
Write-Host 'This is not a package with dlls to reference in it.'
4+
Write-Host 'Please install using chocolatey'
5+
Write-Host "To get chocolatey just run 'Install-Package chocolatey' followed by 'Initialize-Chocolatey'"
6+
Write-Host 'chocolatey install ChocolateyGUI'
7+
write-host 'Removing this package...'
8+
uninstall-package ChocolateyGUI -ProjectName $project.Name

0 commit comments

Comments
 (0)