diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-04-06 21:36:24 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-04-06 21:36:24 +0300 |
commit | 8bcc8d34d4a6953ccb3a668751383d9d0e397e92 (patch) | |
tree | 32bd3f8d7292ea5a65b3201635f250c16f8d705b | |
parent | 02a6c7151f22d56c4ff2fbbec7c79919a3302f9b (diff) |
Make Addin static properties setter private
-rw-r--r-- | RhSolutions.AddIn/AddIn/RhSolutionsAddIn.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RhSolutions.AddIn/AddIn/RhSolutionsAddIn.cs b/RhSolutions.AddIn/AddIn/RhSolutionsAddIn.cs index 0ef2d69..40603e8 100644 --- a/RhSolutions.AddIn/AddIn/RhSolutionsAddIn.cs +++ b/RhSolutions.AddIn/AddIn/RhSolutionsAddIn.cs @@ -13,8 +13,8 @@ namespace RhSolutions.AddIn; public sealed class RhSolutionsAddIn : IExcelAddIn { public static Application Excel { get; private set; } - public static ServiceProvider ServiceProvider { get; set; } - public static IAddInConfiguration Configuration { get; set; } + public static ServiceProvider ServiceProvider { get; private set; } + public static IAddInConfiguration Configuration { get; private set; } public void AutoOpen() { |