From 79a8504b49ef7840a48c2d35563985aac5462129 Mon Sep 17 00:00:00 2001 From: Andreas Weizel Date: Tue, 5 Feb 2013 01:00:00 +0100 Subject: [PATCH] Fix: Setting correct ManagedAddIn.InstallationSource for NuGet installs in AddInSetup. --- src/AddIns/Misc/AddInManager2/Project/Src/Model/AddInSetup.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AddIns/Misc/AddInManager2/Project/Src/Model/AddInSetup.cs b/src/AddIns/Misc/AddInManager2/Project/Src/Model/AddInSetup.cs index c54fd44e68..1be282ee0e 100644 --- a/src/AddIns/Misc/AddInManager2/Project/Src/Model/AddInSetup.cs +++ b/src/AddIns/Misc/AddInManager2/Project/Src/Model/AddInSetup.cs @@ -310,6 +310,7 @@ namespace ICSharpCode.AddInManager2.Model // Mark this AddIn ManagedAddIn markedAddIn = new ManagedAddIn(addIn) { + InstallationSource = AddInInstallationSource.NuGetRepository, IsTemporary = true, IsUpdate = (foundAddIn != null), OldVersion = (foundAddIn != null) ? foundAddIn.Version : null