diff --git a/TimberWinR.ServiceHost/Properties/AssemblyInfo.cs b/TimberWinR.ServiceHost/Properties/AssemblyInfo.cs index 2f86057..7d65e33 100644 --- a/TimberWinR.ServiceHost/Properties/AssemblyInfo.cs +++ b/TimberWinR.ServiceHost/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.3.13.0")] -[assembly: AssemblyFileVersion("1.3.13.0")] +[assembly: AssemblyVersion("1.3.14.0")] +[assembly: AssemblyFileVersion("1.3.14.0")] diff --git a/TimberWix/Product.wxs b/TimberWix/Product.wxs index f625ccf..6f9ecb1 100644 --- a/TimberWix/Product.wxs +++ b/TimberWix/Product.wxs @@ -13,17 +13,16 @@ - + - - + - + @@ -65,6 +64,7 @@ + NOT Installed NOT Installed Installed AND (NOT UPGRADINGPRODUCTCODE) AND (REMOVE="ALL") diff --git a/chocolateyUninstall.ps1.template b/chocolateyUninstall.ps1.template index ee4286b..5b8f222 100644 --- a/chocolateyUninstall.ps1.template +++ b/chocolateyUninstall.ps1.template @@ -1,7 +1,7 @@ $packageName = 'TimberWinR-${version}' # arbitrary name for the package, used in messages $installerType = 'msi' #only one of these: exe, msi, msu $url = 'http://www.ericfontana.com/TimberWinR/TimberWinR-${version}.0.msi' # download url -$silentArgs = '{4C831FB7-1FD1-4AF2-BF52-79781775EAAB} /quiet' +$silentArgs = '${PROJECTGUID} /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" "$url" -validExitCodes $validExitCodes