diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-08 15:59:30 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-08 15:59:30 +0300 |
commit | 01b2e4665136e519d3b35ca4cd1199d8616a4b85 (patch) | |
tree | fb4d4accb4d6fef67fac4a06b8f2c862bb6b5f7d /src/Controllers | |
parent | 69b336f2d51da40bbc299af276d350288ba0fc3b (diff) |
Move to .net6
Diffstat (limited to 'src/Controllers')
-rw-r--r-- | src/Controllers/CombineTool.cs | 1 | ||||
-rw-r--r-- | src/Controllers/ExportTool.cs | 1 | ||||
-rw-r--r-- | src/Controllers/RibbonController.cs | 1 | ||||
-rw-r--r-- | src/Controllers/ToolBase.cs | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/Controllers/CombineTool.cs b/src/Controllers/CombineTool.cs index 75c0f51..4d84d44 100644 --- a/src/Controllers/CombineTool.cs +++ b/src/Controllers/CombineTool.cs @@ -4,6 +4,7 @@ using System; using System.Collections.Generic; using System.Linq; using Dialog = RhSolutions.Models.Dialog; +using Range = Microsoft.Office.Interop.Excel.Range; namespace RhSolutions.Controllers { diff --git a/src/Controllers/ExportTool.cs b/src/Controllers/ExportTool.cs index cb5aefb..e2bbde4 100644 --- a/src/Controllers/ExportTool.cs +++ b/src/Controllers/ExportTool.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using RhSolutions.Models; using System.Linq; +using Range = Microsoft.Office.Interop.Excel.Range; namespace RhSolutions.Controllers { diff --git a/src/Controllers/RibbonController.cs b/src/Controllers/RibbonController.cs index 1175e91..148daca 100644 --- a/src/Controllers/RibbonController.cs +++ b/src/Controllers/RibbonController.cs @@ -7,6 +7,7 @@ using System.IO; using System.Reflection; using System.Runtime.InteropServices; using System.Windows.Forms; +using Range = Microsoft.Office.Interop.Excel.Range; namespace RhSolutions.Controllers { diff --git a/src/Controllers/ToolBase.cs b/src/Controllers/ToolBase.cs index 1d92871..08493d4 100644 --- a/src/Controllers/ToolBase.cs +++ b/src/Controllers/ToolBase.cs @@ -5,6 +5,7 @@ using RhSolutions.Services; using System; using System.Collections.Generic; using System.Linq; +using Range = Microsoft.Office.Interop.Excel.Range; namespace RhSolutions.Controllers { |