From 6db88fb23c77dceacec716741adcd8e26048153a Mon Sep 17 00:00:00 2001 From: Kvasov Roman Date: Thu, 15 Oct 2015 21:31:11 +0300 Subject: [PATCH] Do not trim publisher name --- src/Squirrel/UpdateManager.InstallHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Squirrel/UpdateManager.InstallHelpers.cs b/src/Squirrel/UpdateManager.InstallHelpers.cs index 3cc5d98ec..873fec524 100644 --- a/src/Squirrel/UpdateManager.InstallHelpers.cs +++ b/src/Squirrel/UpdateManager.InstallHelpers.cs @@ -79,7 +79,7 @@ public async Task CreateUninstallerRegistryEntry(string uninstallCm new { Key = "DisplayVersion", Value = zp.Version.ToString() }, new { Key = "InstallDate", Value = DateTime.Now.ToString("yyyymmdd") }, new { Key = "InstallLocation", Value = rootAppDirectory }, - new { Key = "Publisher", Value = zp.Authors.First() }, + new { Key = "Publisher", Value = String.Join(",", zp.Authors) }, new { Key = "QuietUninstallString", Value = String.Format("{0} {1}", uninstallCmd, quietSwitch) }, new { Key = "UninstallString", Value = uninstallCmd }, new { Key = "URLUpdateInfo", Value = zp.ProjectUrl != null ? zp.ProjectUrl.ToString() : "", }