diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-07-29 21:12:47 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-07-29 21:12:47 +0300 |
| commit | 08bd8bac1498b6aa3bd264e5c466dd65a4386fd2 (patch) | |
| tree | 1fb311c11e4975663957aa218ab818beb90528ac /Software/Visual_Studio/PPC/Tango.PPC.UI | |
| parent | bdf7e5a2abc2c9d3b7889d2d71754c33ea3efbf6 (diff) | |
| download | Tango-08bd8bac1498b6aa3bd264e5c466dd65a4386fd2.tar.gz Tango-08bd8bac1498b6aa3bd264e5c466dd65a4386fd2.zip | |
Procedures SQL, Resources, Variables.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs | 3 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/app.manifest | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs index 95aed6c44..05d844782 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModelLocator.cs @@ -26,6 +26,7 @@ using Tango.PPC.Common.Printing; using Tango.PPC.Common.RemoteAssistance; using Tango.PPC.Common.RemoteDesktop; using Tango.PPC.Common.RemoteJob; +using Tango.PPC.Common.SQL; using Tango.PPC.Common.Storage; using Tango.PPC.Common.Synchronization; using Tango.PPC.Common.SystemInfo; @@ -90,6 +91,7 @@ namespace Tango.PPC.UI TangoIOC.Default.Unregister<ISystemInfoService>(); TangoIOC.Default.Unregister<IFileSystemService>(); TangoIOC.Default.Unregister<IRemoteJobService>(); + TangoIOC.Default.Unregister<IRemoteSqlService>(); if (App.StartupArgs != null && App.StartupArgs.Contains("-webDebug")) { @@ -129,6 +131,7 @@ namespace Tango.PPC.UI TangoIOC.Default.Register<IFileSystemService, DefaultFileSystemService>(); TangoIOC.Default.Register<IRemoteDesktopService, DefaultRemoteDesktopService>(); TangoIOC.Default.Register<IRemoteJobService, DefaultRemoteJobService>(); + TangoIOC.Default.Register<IRemoteSqlService, DefaultRemoteSqlService>(); TangoIOC.Default.Register<LoadingViewVM>(); TangoIOC.Default.Register<MainViewVM>(); diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/app.manifest b/Software/Visual_Studio/PPC/Tango.PPC.UI/app.manifest index d72e75011..efc5f8179 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/app.manifest +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/app.manifest @@ -16,7 +16,7 @@ Remove this element if your application requires this virtualization for backwards compatibility. --> - <requestedExecutionLevel level="requireAdministrator" uiAccess="false" /> + <!--<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />--> </requestedPrivileges> </security> </trustInfo> |
