diff options
author | Serghei Cebotari <51533848+schebotar@users.noreply.github.com> | 2021-12-24 17:43:04 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-24 17:43:04 +0300 |
commit | 0525ec1b42d5857b740dd0dae7f6d9baeb7088d1 (patch) | |
tree | 5d9c814fd023395d894ce36a9040cf7f7330198c /Source/ExcelDNA/AddIn.cs | |
parent | 8e5db1238ad3ed97f51d9f0a9c7de83c00a12983 (diff) | |
parent | 20cfbfcca3a779c04aecdca5e4b465651e2be42a (diff) |
Merge pull request #8 from schebotar/dev
Dev
Diffstat (limited to 'Source/ExcelDNA/AddIn.cs')
-rw-r--r-- | Source/ExcelDNA/AddIn.cs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/Source/ExcelDNA/AddIn.cs b/Source/ExcelDNA/AddIn.cs deleted file mode 100644 index 0505e5b..0000000 --- a/Source/ExcelDNA/AddIn.cs +++ /dev/null @@ -1,28 +0,0 @@ -using ExcelDna.Integration; -using ExcelDna.Registration; -using System.Net.Http; - -namespace Rehau.Sku.Assist -{ - public class AddIn : IExcelAddIn - { - public static HttpClient httpClient; - - public void AutoOpen() - { - RegisterFunctions(); - httpClient = new HttpClient(); - } - - public void AutoClose() - { - } - - void RegisterFunctions() - { - ExcelRegistration.GetExcelFunctions() - .ProcessAsyncRegistrations(nativeAsyncIfAvailable: false) - .RegisterFunctions(); - } - } -} |