From 598ffe0d3c8ce810bd50039eedb3634e0433e6da Mon Sep 17 00:00:00 2001 From: Sergey Chebotar Date: Mon, 19 Dec 2022 20:27:11 +0300 Subject: Remove Registration --- src/AddIn/AddIn.cs | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/AddIn/AddIn.cs') diff --git a/src/AddIn/AddIn.cs b/src/AddIn/AddIn.cs index 5486103..b8bfd21 100644 --- a/src/AddIn/AddIn.cs +++ b/src/AddIn/AddIn.cs @@ -1,6 +1,5 @@ using ExcelDna.Integration; using ExcelDna.IntelliSense; -using ExcelDna.Registration; using Microsoft.Office.Interop.Excel; using System.Net.Http; using System.Runtime.Caching; @@ -16,7 +15,6 @@ namespace RhSolutions { Excel = (Application)ExcelDnaUtil.Application; httpClient = new HttpClient(); - RegisterFunctions(); IntelliSenseServer.Install(); RegistryUtil.Initialize(); EventsUtil.Initialize(); @@ -28,12 +26,5 @@ namespace RhSolutions RegistryUtil.Uninitialize(); EventsUtil.Uninitialize(); } - - void RegisterFunctions() - { - ExcelRegistration.GetExcelFunctions() - .ProcessAsyncRegistrations(nativeAsyncIfAvailable: false) - .RegisterFunctions(); - } } } -- cgit v1.2.3