aboutsummaryrefslogtreecommitdiff
path: root/src/AddIn.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/AddIn.cs')
-rw-r--r--src/AddIn.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/AddIn.cs b/src/AddIn.cs
new file mode 100644
index 0000000..8c44821
--- /dev/null
+++ b/src/AddIn.cs
@@ -0,0 +1,31 @@
+using ExcelDna.Integration;
+using ExcelDna.IntelliSense;
+using Microsoft.Office.Interop.Excel;
+using RhSolutions.Services;
+using System.Net.Http;
+using System.Runtime.Caching;
+
+namespace RhSolutions
+{
+ class RhSolutionsAddIn : IExcelAddIn
+ {
+ public static Application Excel;
+ public static HttpClient httpClient;
+
+ public void AutoOpen()
+ {
+ Excel = (Application)ExcelDnaUtil.Application;
+ httpClient = new HttpClient();
+ IntelliSenseServer.Install();
+ RegistryUtil.Initialize();
+ EventsUtil.Initialize();
+ }
+
+ public void AutoClose()
+ {
+ IntelliSenseServer.Uninstall();
+ RegistryUtil.Uninitialize();
+ EventsUtil.Uninitialize();
+ }
+ }
+}