diff options
| author | RedShirtMB Mark Linton redshirt linton <RedShirtMB Mark Linton redshirt.linton@gmail.com> | 2012-08-05 09:09:45 -0700 |
|---|---|---|
| committer | RedShirtMB Mark Linton redshirt linton <RedShirtMB Mark Linton redshirt.linton@gmail.com> | 2012-08-05 09:09:45 -0700 |
| commit | debc4e6ae513ca6f3d896c46f8bf528315108d89 (patch) | |
| tree | cf64f7f0d09917aea3d2bef40a4ebc3c7c4198c2 /MediaBrowser.ServerApplication/App.xaml.cs | |
| parent | 2abc0e902014e9ca6947f2eb378dffba485fd699 (diff) | |
Added missing reference to MediaBrowser.Common
2nd launch of ServerApplication will call OpenDashboard
Diffstat (limited to 'MediaBrowser.ServerApplication/App.xaml.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/App.xaml.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/MediaBrowser.ServerApplication/App.xaml.cs b/MediaBrowser.ServerApplication/App.xaml.cs index 1106b7999..f6f05b728 100644 --- a/MediaBrowser.ServerApplication/App.xaml.cs +++ b/MediaBrowser.ServerApplication/App.xaml.cs @@ -33,8 +33,8 @@ namespace MediaBrowser.ServerApplication #region ISingleInstanceApp Members
public bool SignalExternalCommandLineArgs(IList<string> args)
{
- // handle command line arguments of second instance
- // ...
+ OpenDashboard();
+
return true;
}
#endregion
@@ -45,5 +45,9 @@ namespace MediaBrowser.ServerApplication Kernel.Instance.Dispose();
}
+
+ public static void OpenDashboard()
+ {
+ }
}
}
|
