From 6db530b52662c4ec941204bb1ffa011fc74376eb Mon Sep 17 00:00:00 2001 From: Eric Fontana Date: Wed, 29 Apr 2015 09:51:40 -0400 Subject: [PATCH] Remove dead code --- TimberWinR/Manager.cs | 4 +--- chocolateyUninstall.ps1.template | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/TimberWinR/Manager.cs b/TimberWinR/Manager.cs index 035ef88..31746a0 100644 --- a/TimberWinR/Manager.cs +++ b/TimberWinR/Manager.cs @@ -22,9 +22,7 @@ namespace TimberWinR public class Manager { public Configuration Config { get; set; } - public List Outputs { get; set; } - public List Tcps { get; set; } - public List Udps { get; set; } + public List Outputs { get; set; } public List Listeners { get; set; } public bool LiveMonitor { get; set; } diff --git a/chocolateyUninstall.ps1.template b/chocolateyUninstall.ps1.template index 0b821b9..1827afd 100644 --- a/chocolateyUninstall.ps1.template +++ b/chocolateyUninstall.ps1.template @@ -2,8 +2,6 @@ $packageName = 'TimberWinR-${version}' # arbitrary name for the package, used in $installerType = 'msi' #only one of these: exe, msi, msu $scriptPath = $(Split-Path $MyInvocation.MyCommand.Path) $fileFullPath = Join-Path $scriptPath 'TimberWinR-${version}.0.msi' -$silentArgs = '${PROJECTGUID} /quiet' +$silentArgs = '{CC4DF908-07C4-4BD8-A9FA-6E6AC315E30B} /quiet' $validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx UnInstall-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "fileFullPath" -validExitCodes $validExitCodes - -