From: <che...@us...> - 2009-07-05 17:21:03
|
Revision: 2984 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2984&view=rev Author: chef_koch Date: 2009-07-05 17:21:00 +0000 (Sun, 05 Jul 2009) Log Message: ----------- removed setting for verbose logging, replaced it's if statements by Log.Debug Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.Designer.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MPControlPlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/PluginSetup.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.Designer.cs 2009-07-05 16:22:15 UTC (rev 2983) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.Designer.cs 2009-07-05 17:21:00 UTC (rev 2984) @@ -40,7 +40,6 @@ this.buttonDeleteMacro = new System.Windows.Forms.Button(); this.buttonEditMacro = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); - this.checkBoxLogVerbose = new System.Windows.Forms.CheckBox(); this.toolTips = new System.Windows.Forms.ToolTip(this.components); this.checkBoxMultiMapping = new System.Windows.Forms.CheckBox(); this.checkBoxEventMapper = new System.Windows.Forms.CheckBox(); @@ -232,17 +231,6 @@ this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); // - // checkBoxLogVerbose - // - this.checkBoxLogVerbose.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.checkBoxLogVerbose.Location = new System.Drawing.Point(192, 344); - this.checkBoxLogVerbose.Name = "checkBoxLogVerbose"; - this.checkBoxLogVerbose.Size = new System.Drawing.Size(120, 24); - this.checkBoxLogVerbose.TabIndex = 3; - this.checkBoxLogVerbose.Text = "&Extended logging"; - this.toolTips.SetToolTip(this.checkBoxLogVerbose, "Enable more detailed logging of plugin operations"); - this.checkBoxLogVerbose.UseVisualStyleBackColor = true; - // // checkBoxMultiMapping // this.checkBoxMultiMapping.Location = new System.Drawing.Point(8, 8); @@ -866,7 +854,6 @@ this.CancelButton = this.buttonCancel; this.ClientSize = new System.Drawing.Size(592, 373); this.Controls.Add(this.checkBoxRequiresFocus); - this.Controls.Add(this.checkBoxLogVerbose); this.Controls.Add(this.buttonChangeServer); this.Controls.Add(this.buttonHelp); this.Controls.Add(this.tabControl); @@ -909,7 +896,6 @@ private System.Windows.Forms.Button buttonDeleteMacro; private System.Windows.Forms.Button buttonEditMacro; private System.Windows.Forms.Button buttonCancel; - private System.Windows.Forms.CheckBox checkBoxLogVerbose; private System.Windows.Forms.ToolTip toolTips; private System.Windows.Forms.TabControl tabControl; private System.Windows.Forms.TabPage tabPageIR; Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.cs 2009-07-05 16:22:15 UTC (rev 2983) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.cs 2009-07-05 17:21:00 UTC (rev 2984) @@ -71,7 +71,6 @@ MessageBox.Show(this, "Failed to start local comms. IR functions temporarily disabled.", "MP Control Plugin - Error", MessageBoxButtons.OK, MessageBoxIcon.Error); - checkBoxLogVerbose.Checked = MPControlPlugin.LogVerbose; checkBoxRequiresFocus.Checked = MPControlPlugin.RequireFocus; checkBoxMultiMapping.Checked = MPControlPlugin.MultiMappingEnabled; checkBoxEventMapper.Checked = MPControlPlugin.EventMapperEnabled; @@ -800,7 +799,6 @@ private void buttonOK_Click(object sender, EventArgs e) { - MPControlPlugin.LogVerbose = checkBoxLogVerbose.Checked; MPControlPlugin.RequireFocus = checkBoxRequiresFocus.Checked; MPControlPlugin.MultiMappingEnabled = checkBoxMultiMapping.Checked; MPControlPlugin.EventMapperEnabled = checkBoxEventMapper.Checked; Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MPControlPlugin.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MPControlPlugin.cs 2009-07-05 16:22:15 UTC (rev 2983) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MPControlPlugin.cs 2009-07-05 17:21:00 UTC (rev 2984) @@ -81,7 +81,6 @@ private static string _learnIRFilename; - private static bool _logVerbose; private static bool _mouseModeAcceleration; private static bool _mouseModeActive; @@ -118,16 +117,6 @@ } /// <summary> - /// Gets or sets a value indicating whether to log verbosely. - /// </summary> - /// <value><c>true</c> if logging is set to verbose; otherwise, <c>false</c>.</value> - internal static bool LogVerbose - { - get { return _logVerbose; } - set { _logVerbose = value; } - } - - /// <summary> /// Gets or sets a value indicating whether MediaPortal will require focus to handle input. /// </summary> /// <value><c>true</c> if requires focus; otherwise, <c>false</c>.</value> @@ -314,8 +303,7 @@ //SystemEvents.SessionEnding += new SessionEndingEventHandler(SystemEvents_SessionEnding); SystemEvents.PowerModeChanged += SystemEvents_PowerModeChanged; - if (LogVerbose) - Log.Info("MPControlPlugin: Started"); + Log.Debug("MPControlPlugin: Started"); } /// <summary> @@ -340,8 +328,7 @@ for (int i = 0; i < _multiInputHandlers.Count; i++) _multiInputHandlers[i] = null; - if (LogVerbose) - Log.Info("MPControlPlugin: Stopped"); + Log.Debug("MPControlPlugin: Stopped"); } #endregion IPlugin methods @@ -428,17 +415,15 @@ _inConfiguration = true; - if (LogVerbose) - Log.Info("MPControlPlugin: ShowPlugin()"); + Log.Debug("MPControlPlugin: ShowPlugin()"); SetupForm setupForm = new SetupForm(); if (setupForm.ShowDialog() == DialogResult.OK) SaveSettings(); StopClient(); - - if (LogVerbose) - Log.Info("MPControlPlugin: ShowPlugin() - End"); + + Log.Debug("MPControlPlugin: ShowPlugin() - End"); } catch (Exception ex) { @@ -502,8 +487,7 @@ MPCommon.ShowNotifyDialog("Mouse Mode", notifyMessage, 2); - if (LogVerbose) - Log.Info("MPControlPlugin: {0}", notifyMessage); + Log.Debug("MPControlPlugin: {0}", notifyMessage); return true; } @@ -695,40 +679,36 @@ foreach (MappedKeyCode mapping in _remoteMap) { - if (mapping.KeyCode.Equals(keyCode, StringComparison.Ordinal)) + if (!mapping.KeyCode.Equals(keyCode, StringComparison.OrdinalIgnoreCase)) + continue; + + if (MultiMappingEnabled && mapping.Button == MultiMappingButton) { - if (MultiMappingEnabled && mapping.Button == MultiMappingButton) - { - ChangeMultiMapping(); + ChangeMultiMapping(); + return; + } + + if (MouseModeEnabled) + if (HandleMouseMode(mapping.Button)) return; - } - if (MouseModeEnabled) - if (HandleMouseMode(mapping.Button)) - return; + // Get & execute Mapping + bool gotMapped; + if (MultiMappingEnabled) + gotMapped = _multiInputHandlers[_multiMappingSet].MapAction((int) mapping.Button); + else + gotMapped = _defaultInputHandler.MapAction((int) mapping.Button); - // Get & execute Mapping - bool gotMapped; - if (MultiMappingEnabled) - gotMapped = _multiInputHandlers[_multiMappingSet].MapAction((int) mapping.Button); - else - gotMapped = _defaultInputHandler.MapAction((int) mapping.Button); + if (gotMapped) + Log.Debug("MPControlPlugin: Command \"{0}\" mapped to remote", mapping.Button); + else + Log.Debug("MPControlPlugin: Command \"{0}\" not mapped to remote", mapping.Button); - if (LogVerbose) - { - if (gotMapped) - Log.Debug("MPControlPlugin: Command \"{0}\" mapped to remote", mapping.Button); - else - Log.Debug("MPControlPlugin: Command \"{0}\" not mapped to remote", mapping.Button); - } - - return; - } + return; } + + Log.Debug("MPControlPlugin: keyCode \"{0}\" was not handled", keyCode); - if (LogVerbose) - Log.Info("MPControlPlugin: keyCode \"{0}\" was not handled", keyCode); - return; } @@ -798,8 +778,7 @@ private static void ReceivedMessage(IrssMessage received) { - if (LogVerbose) - Log.Debug("MPControlPlugin: Received Message \"{0}\"", received.Type); + Log.Debug("MPControlPlugin: Received Message \"{0}\"", received.Type); try { @@ -821,8 +800,7 @@ case MessageType.BlastIR: if ((received.Flags & MessageFlags.Success) == MessageFlags.Success) { - if (LogVerbose) - Log.Info("MPControlPlugin: Blast successful"); + Log.Debug("MPControlPlugin: Blast successful"); } else if ((received.Flags & MessageFlags.Failure) == MessageFlags.Failure) { @@ -836,8 +814,7 @@ _irServerInfo = IRServerInfo.FromBytes(received.GetDataAsBytes()); _registered = true; - if (LogVerbose) - Log.Info("MPControlPlugin: Registered to IR Server"); + Log.Debug("MPControlPlugin: Registered to IR Server"); } else if ((received.Flags & MessageFlags.Failure) == MessageFlags.Failure) { @@ -849,8 +826,7 @@ case MessageType.LearnIR: if ((received.Flags & MessageFlags.Success) == MessageFlags.Success) { - if (LogVerbose) - Log.Info("MPControlPlugin: Learned IR Successfully"); + Log.Debug("MPControlPlugin: Learned IR Successfully"); byte[] dataBytes = received.GetDataAsBytes(); @@ -910,8 +886,7 @@ // Show the mapping set name on screen ... string setName = MultiMaps[_multiMappingSet]; - if (LogVerbose) - Log.Info("MPControlPlugin: Multi-Mapping has cycled to \"{0}\"", setName); + Log.Debug("MPControlPlugin: Multi-Mapping has cycled to \"{0}\"", setName); MPCommon.ShowNotifyDialog("Multi-Mapping", setName, 2); } @@ -939,8 +914,7 @@ // Show the mapping set name on screen ... string setName = MultiMaps[_multiMappingSet]; - if (LogVerbose) - Log.Info("MPControlPlugin: Multi-Mapping has changed to \"{0}\"", setName); + Log.Debug("MPControlPlugin: Multi-Mapping has changed to \"{0}\"", setName); MPCommon.ShowNotifyDialog("Multi-Mapping", setName, 2); return; @@ -1085,8 +1059,7 @@ if (!matched) continue; - if (LogVerbose) - Log.Info("MPControlPlugin: Event Mapper - Event \"{0}\"", + Log.Debug("MPControlPlugin: Event Mapper - Event \"{0}\"", Enum.GetName(typeof (MappedEvent.MappingEvent), eventType)); try @@ -1115,8 +1088,7 @@ if (mappedEvent.MatchParam) continue; - if (LogVerbose) - Log.Info("MPControlPlugin: Event Mapper - Event \"{0}\"", + Log.Debug("MPControlPlugin: Event Mapper - Event \"{0}\"", Enum.GetName(typeof (MappedEvent.MappingEvent), eventType)); try @@ -1254,8 +1226,7 @@ /// <param name="port">Port to blast to.</param> internal static void BlastIR(string fileName, string port) { - if (LogVerbose) - Log.Debug("MPControlPlugin - BlastIR(): {0}, {1}", fileName, port); + Log.Debug("MPControlPlugin - BlastIR(): {0}, {1}", fileName, port); if (!_registered) throw new InvalidOperationException("Cannot Blast, not registered to an active Input Service"); @@ -1608,7 +1579,6 @@ { ServerHost = xmlreader.GetValueAsString("MPControlPlugin", "ServerHost", "localhost"); - LogVerbose = xmlreader.GetValueAsBool("MPControlPlugin", "LogVerbose", false); RequireFocus = xmlreader.GetValueAsBool("MPControlPlugin", "RequireFocus", true); MultiMappingEnabled = xmlreader.GetValueAsBool("MPControlPlugin", "MultiMappingEnabled", false); MultiMappingButton = @@ -1641,7 +1611,6 @@ { xmlwriter.SetValue("MPControlPlugin", "ServerHost", ServerHost); - xmlwriter.SetValueAsBool("MPControlPlugin", "LogVerbose", LogVerbose); xmlwriter.SetValueAsBool("MPControlPlugin", "RequireFocus", RequireFocus); xmlwriter.SetValueAsBool("MPControlPlugin", "MultiMappingEnabled", MultiMappingEnabled); xmlwriter.SetValue("MPControlPlugin", "MultiMappingButton", (int) MultiMappingButton); Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/PluginSetup.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/PluginSetup.cs 2009-07-05 16:22:15 UTC (rev 2983) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/PluginSetup.cs 2009-07-05 17:21:00 UTC (rev 2984) @@ -60,8 +60,6 @@ TV3BlasterPlugin.InConfiguration = true; TvBusinessLayer layer = new TvBusinessLayer(); - TV3BlasterPlugin.LogVerbose = - checkBoxLogVerbose.Checked = Convert.ToBoolean(layer.GetSetting("TV3BlasterPlugin_LogVerbose", "False").Value); TV3BlasterPlugin.ServerHost = layer.GetSetting("TV3BlasterPlugin_ServerHost", String.Empty).Value; if (String.IsNullOrEmpty(TV3BlasterPlugin.ServerHost)) @@ -95,12 +93,6 @@ TvBusinessLayer layer = new TvBusinessLayer(); Setting setting; - TV3BlasterPlugin.LogVerbose = checkBoxLogVerbose.Checked; - - setting = layer.GetSetting("TV3BlasterPlugin_LogVerbose"); - setting.Value = TV3BlasterPlugin.LogVerbose.ToString(); - setting.Persist(); - setting = layer.GetSetting("TV3BlasterPlugin_ServerHost"); setting.Value = TV3BlasterPlugin.ServerHost; setting.Persist(); Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs 2009-07-05 16:22:15 UTC (rev 2983) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3BlasterPlugin.cs 2009-07-05 17:21:00 UTC (rev 2984) @@ -72,7 +72,6 @@ private static IRServerInfo _irServerInfo = new IRServerInfo(); private static string _learnIRFilename; - private static bool _logVerbose; private static bool _registered; private static string _serverHost; @@ -87,16 +86,6 @@ } /// <summary> - /// Gets or sets a value indicating whether to log verbosely. - /// </summary> - /// <value><c>true</c> if logging is set to verbose; otherwise, <c>false</c>.</value> - internal static bool LogVerbose - { - get { return _logVerbose; } - set { _logVerbose = value; } - } - - /// <summary> /// Gets or sets a value indicating whether in configuration. /// </summary> /// <value><c>true</c> if in configuration; otherwise, <c>false</c>.</value> @@ -177,8 +166,7 @@ if (!StartClient(endPoint)) Log.Error("TV3BlasterPlugin: Failed to start local comms, IR blasting is disabled for this session"); - if (LogVerbose) - Log.Info("TV3BlasterPlugin: Started"); + Log.Debug("TV3BlasterPlugin: Started"); } /// <summary> @@ -191,8 +179,7 @@ StopClient(); - if (LogVerbose) - Log.Info("TV3BlasterPlugin: Stopped"); + Log.Debug("TV3BlasterPlugin: Stopped"); } /// <summary> @@ -273,8 +260,7 @@ private static void ReceivedMessage(IrssMessage received) { - if (LogVerbose) - Log.Debug("TV3BlasterPlugin: Received Message \"{0}\"", received.Type); + Log.Debug("TV3BlasterPlugin: Received Message \"{0}\"", received.Type); try { @@ -283,8 +269,7 @@ case MessageType.BlastIR: if ((received.Flags & MessageFlags.Success) == MessageFlags.Success) { - if (LogVerbose) - Log.Info("TV3BlasterPlugin: Blast successful"); + Log.Debug("TV3BlasterPlugin: Blast successful"); } else if ((received.Flags & MessageFlags.Failure) == MessageFlags.Failure) { @@ -298,8 +283,7 @@ _irServerInfo = IRServerInfo.FromBytes(received.GetDataAsBytes()); _registered = true; - if (LogVerbose) - Log.Info("TV3BlasterPlugin: Registered to IR Server"); + Log.Debug("TV3BlasterPlugin: Registered to IR Server"); } else if ((received.Flags & MessageFlags.Failure) == MessageFlags.Failure) { @@ -311,8 +295,7 @@ case MessageType.LearnIR: if ((received.Flags & MessageFlags.Success) == MessageFlags.Success) { - if (LogVerbose) - Log.Info("TV3BlasterPlugin: Learned IR Successfully"); + Log.Debug("TV3BlasterPlugin: Learned IR Successfully"); byte[] dataBytes = received.GetDataAsBytes(); @@ -660,8 +643,7 @@ /// <param name="port">Port to blast to.</param> internal static void BlastIR(string fileName, string port) { - if (LogVerbose) - Log.Debug("TV3BlasterPlugin - BlastIR(): {0}, {1}", fileName, port); + Log.Debug("TV3BlasterPlugin - BlastIR(): {0}, {1}", fileName, port); if (!_registered) throw new InvalidOperationException("Cannot Blast, not registered to an active Input Service"); @@ -871,7 +853,6 @@ { TvBusinessLayer layer = new TvBusinessLayer(); ServerHost = layer.GetSetting("TV3BlasterPlugin_ServerHost", "localhost").Value; - LogVerbose = Convert.ToBoolean(layer.GetSetting("TV3BlasterPlugin_LogVerbose", "False").Value); } #endregion Implementation This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-07-05 17:33:03
|
Revision: 2985 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=2985&view=rev Author: chef_koch Date: 2009-07-05 17:33:02 +0000 (Sun, 05 Jul 2009) Log Message: ----------- removed setting for verbose logging, replaced it's if statements by Log.Debug Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.Designer.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/SetupForm.Designer.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2BlasterPlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/PluginSetup.Designer.cs Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.Designer.cs 2009-07-05 17:21:00 UTC (rev 2984) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.Designer.cs 2009-07-05 17:33:02 UTC (rev 2985) @@ -58,7 +58,6 @@ this.buttonDeleteMacro = new System.Windows.Forms.Button(); this.buttonEditMacro = new System.Windows.Forms.Button(); this.buttonNewMacro = new System.Windows.Forms.Button(); - this.checkBoxLogVerbose = new System.Windows.Forms.CheckBox(); this.toolTips = new System.Windows.Forms.ToolTip(this.components); this.buttonHelp = new System.Windows.Forms.Button(); this.tabControl.SuspendLayout(); @@ -427,17 +426,6 @@ this.buttonNewMacro.UseVisualStyleBackColor = true; this.buttonNewMacro.Click += new System.EventHandler(this.buttonNewMacro_Click); // - // checkBoxLogVerbose - // - this.checkBoxLogVerbose.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.checkBoxLogVerbose.Location = new System.Drawing.Point(216, 376); - this.checkBoxLogVerbose.Name = "checkBoxLogVerbose"; - this.checkBoxLogVerbose.Size = new System.Drawing.Size(120, 24); - this.checkBoxLogVerbose.TabIndex = 3; - this.checkBoxLogVerbose.Text = "&Extended logging"; - this.toolTips.SetToolTip(this.checkBoxLogVerbose, "Enable more detailed logging of plugin operations"); - this.checkBoxLogVerbose.UseVisualStyleBackColor = true; - // // buttonHelp // this.buttonHelp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); @@ -457,7 +445,6 @@ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.buttonCancel; this.ClientSize = new System.Drawing.Size(520, 415); - this.Controls.Add(this.checkBoxLogVerbose); this.Controls.Add(this.buttonHelp); this.Controls.Add(this.tabControl); this.Controls.Add(this.buttonChangeServer); @@ -496,7 +483,6 @@ private System.Windows.Forms.Button buttonDeleteMacro; private System.Windows.Forms.Button buttonEditMacro; private System.Windows.Forms.Button buttonNewMacro; - private System.Windows.Forms.CheckBox checkBoxLogVerbose; private System.Windows.Forms.Button buttonNewCommand; private System.Windows.Forms.GroupBox groupBoxTreeCommands; private System.Windows.Forms.Button buttonBottom; Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.cs 2009-07-05 17:21:00 UTC (rev 2984) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.cs 2009-07-05 17:33:02 UTC (rev 2985) @@ -67,8 +67,6 @@ MessageBox.Show(this, "Failed to start local comms. IR functions temporarily disabled.", "MP Blast Zone Plugin - Error", MessageBoxButtons.OK, MessageBoxIcon.Error); - checkBoxLogVerbose.Checked = MPBlastZonePlugin.LogVerbose; - RefreshIRList(); RefreshMacroList(); RefreshCommandsCombo(); @@ -634,8 +632,6 @@ private void buttonOK_Click(object sender, EventArgs e) { - MPBlastZonePlugin.LogVerbose = checkBoxLogVerbose.Checked; - // Save menu ... MPBlastZonePlugin.Menu.Clear(); foreach (TreeNode collectionNode in treeViewMenu.Nodes) Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs 2009-07-05 17:21:00 UTC (rev 2984) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs 2009-07-05 17:33:02 UTC (rev 2985) @@ -79,7 +79,6 @@ private static IRServerInfo _irServerInfo = new IRServerInfo(); private static string _learnIRFilename; - private static bool _logVerbose; private static MenuRoot _menu; private static bool _mpBasicHome; private static bool _registered; @@ -106,16 +105,6 @@ } /// <summary> - /// Gets or sets a value indicating whether to log verbosely. - /// </summary> - /// <value><c>true</c> if logging is set to verbose; otherwise, <c>false</c>.</value> - internal static bool LogVerbose - { - get { return _logVerbose; } - set { _logVerbose = value; } - } - - /// <summary> /// Gets or sets a value indicating whether in configuration. /// </summary> /// <value><c>true</c> if in configuration; otherwise, <c>false</c>.</value> @@ -241,8 +230,7 @@ { _inConfiguration = true; - if (LogVerbose) - Log.Info("MPBlastZonePlugin: ShowPlugin()"); + Log.Debug("MPBlastZonePlugin: ShowPlugin()"); SetupForm setupForm = new SetupForm(); if (setupForm.ShowDialog() == DialogResult.OK) @@ -250,8 +238,7 @@ StopClient(); - if (LogVerbose) - Log.Info("MPBlastZonePlugin: ShowPlugin() - End"); + Log.Debug("MPBlastZonePlugin: ShowPlugin() - End"); } catch (Exception ex) { @@ -309,8 +296,7 @@ if (Load(skinFile)) { - if (LogVerbose) - Log.Info("MPBlastZonePlugin: Started"); + Log.Debug("MPBlastZonePlugin: Started"); return true; } @@ -328,8 +314,7 @@ base.DeInit(); - if (LogVerbose) - Log.Info("MPBlastZonePlugin: Stopped"); + Log.Debug("MPBlastZonePlugin: Stopped"); } /// <summary> @@ -509,8 +494,7 @@ private static void ReceivedMessage(IrssMessage received) { - if (LogVerbose) - Log.Debug("MPBlastZonePlugin: Received Message \"{0}\"", received.Type); + Log.Debug("MPBlastZonePlugin: Received Message \"{0}\"", received.Type); try { @@ -519,8 +503,7 @@ case MessageType.BlastIR: if ((received.Flags & MessageFlags.Success) == MessageFlags.Success) { - if (LogVerbose) - Log.Info("MPBlastZonePlugin: Blast successful"); + Log.Debug("MPBlastZonePlugin: Blast successful"); } else if ((received.Flags & MessageFlags.Failure) == MessageFlags.Failure) { @@ -534,8 +517,7 @@ _irServerInfo = IRServerInfo.FromBytes(received.GetDataAsBytes()); _registered = true; - if (LogVerbose) - Log.Info("MPBlastZonePlugin: Registered to IR Server"); + Log.Debug("MPBlastZonePlugin: Registered to IR Server"); } else if ((received.Flags & MessageFlags.Failure) == MessageFlags.Failure) { @@ -547,8 +529,7 @@ case MessageType.LearnIR: if ((received.Flags & MessageFlags.Success) == MessageFlags.Success) { - if (LogVerbose) - Log.Info("MPBlastZonePlugin: Learned IR Successfully"); + Log.Debug("MPBlastZonePlugin: Learned IR Successfully"); byte[] dataBytes = received.GetDataAsBytes(); @@ -637,8 +618,7 @@ /// <param name="port">Port to blast to.</param> internal static void BlastIR(string fileName, string port) { - if (LogVerbose) - Log.Debug("MPControlPlugin - BlastIR(): {0}, {1}", fileName, port); + Log.Debug("MPControlPlugin - BlastIR(): {0}, {1}", fileName, port); if (!_registered) throw new InvalidOperationException("Cannot Blast, not registered to an active Input Service"); @@ -966,8 +946,6 @@ { ServerHost = xmlreader.GetValueAsString("MPBlastZonePlugin", "ServerHost", "localhost"); - LogVerbose = xmlreader.GetValueAsBool("MPBlastZonePlugin", "LogVerbose", false); - // MediaPortal settings ... _mpBasicHome = xmlreader.GetValueAsBool("general", "startbasichome", false); } @@ -988,8 +966,6 @@ using (Settings xmlwriter = new Settings(MPCommon.MPConfigFile)) { xmlwriter.SetValue("MPBlastZonePlugin", "ServerHost", ServerHost); - - xmlwriter.SetValueAsBool("MPBlastZonePlugin", "LogVerbose", LogVerbose); } } catch (Exception ex) Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/SetupForm.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/SetupForm.Designer.cs 2009-07-05 17:21:00 UTC (rev 2984) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/SetupForm.Designer.cs 2009-07-05 17:33:02 UTC (rev 2985) @@ -38,7 +38,6 @@ this.buttonDeleteMacro = new System.Windows.Forms.Button(); this.buttonEditMacro = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); - this.checkBoxLogVerbose = new System.Windows.Forms.CheckBox(); this.buttonExtChannels = new System.Windows.Forms.Button(); this.toolTips = new System.Windows.Forms.ToolTip(this.components); this.buttonChangeServer = new System.Windows.Forms.Button(); @@ -162,17 +161,6 @@ this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); // - // checkBoxLogVerbose - // - this.checkBoxLogVerbose.AutoSize = true; - this.checkBoxLogVerbose.Location = new System.Drawing.Point(8, 8); - this.checkBoxLogVerbose.Name = "checkBoxLogVerbose"; - this.checkBoxLogVerbose.Size = new System.Drawing.Size(108, 17); - this.checkBoxLogVerbose.TabIndex = 0; - this.checkBoxLogVerbose.Text = "Extended logging"; - this.toolTips.SetToolTip(this.checkBoxLogVerbose, "Enable more detailed logging of plugin operations"); - this.checkBoxLogVerbose.UseVisualStyleBackColor = true; - // // buttonExtChannels // this.buttonExtChannels.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); @@ -227,7 +215,6 @@ // tabPageOptions // this.tabPageOptions.Controls.Add(this.buttonHelp); - this.tabPageOptions.Controls.Add(this.checkBoxLogVerbose); this.tabPageOptions.Controls.Add(this.buttonChangeServer); this.tabPageOptions.Controls.Add(this.buttonExtChannels); this.tabPageOptions.Location = new System.Drawing.Point(4, 22); @@ -345,7 +332,6 @@ private System.Windows.Forms.Button buttonEditMacro; private System.Windows.Forms.Button buttonCancel; private System.Windows.Forms.Button buttonExtChannels; - private System.Windows.Forms.CheckBox checkBoxLogVerbose; private System.Windows.Forms.ToolTip toolTips; private System.Windows.Forms.TabControl tabControl; private System.Windows.Forms.TabPage tabPageIR; Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/SetupForm.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/SetupForm.cs 2009-07-05 17:21:00 UTC (rev 2984) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/Forms/SetupForm.cs 2009-07-05 17:33:02 UTC (rev 2985) @@ -65,8 +65,6 @@ MessageBox.Show(this, "Failed to start local comms. IR functions temporarily disabled.", "TV2 Blaster Plugin - Error", MessageBoxButtons.OK, MessageBoxIcon.Error); - checkBoxLogVerbose.Checked = TV2BlasterPlugin.LogVerbose; - RefreshIRList(); RefreshMacroList(); @@ -298,8 +296,6 @@ private void buttonOK_Click(object sender, EventArgs e) { - TV2BlasterPlugin.LogVerbose = checkBoxLogVerbose.Checked; - DialogResult = DialogResult.OK; Close(); } Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2BlasterPlugin.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2BlasterPlugin.cs 2009-07-05 17:21:00 UTC (rev 2984) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2BlasterPlugin.cs 2009-07-05 17:33:02 UTC (rev 2985) @@ -67,7 +67,6 @@ private static IRServerInfo _irServerInfo = new IRServerInfo(); private static string _learnIRFilename; - private static bool _logVerbose; private static bool _mpBasicHome; private static bool _registered; private static string _serverHost; @@ -83,16 +82,6 @@ } /// <summary> - /// Gets or sets a value indicating whether to log verbosely. - /// </summary> - /// <value><c>true</c> if logging is set to verbose; otherwise, <c>false</c>.</value> - internal static bool LogVerbose - { - get { return _logVerbose; } - set { _logVerbose = value; } - } - - /// <summary> /// Gets or sets a value indicating whether in configuration. /// </summary> /// <value><c>true</c> if in configuration; otherwise, <c>false</c>.</value> @@ -140,8 +129,7 @@ // Register with MediaPortal to receive GUI Messages ... GUIWindowManager.Receivers += OnMessage; - if (LogVerbose) - Log.Info("TV2BlasterPlugin: Started"); + Log.Debug("TV2BlasterPlugin: Started"); } /// <summary> @@ -153,8 +141,7 @@ StopClient(); - if (LogVerbose) - Log.Info("TV2BlasterPlugin: Stopped"); + Log.Debug("TV2BlasterPlugin: Stopped"); } #endregion IPlugin methods @@ -240,8 +227,7 @@ _inConfiguration = true; - if (LogVerbose) - Log.Info("TV2BlasterPlugin: ShowPlugin()"); + Log.Debug("TV2BlasterPlugin: ShowPlugin()"); SetupForm setupForm = new SetupForm(); if (setupForm.ShowDialog() == DialogResult.OK) @@ -254,8 +240,7 @@ Log.Error(ex); } - if (LogVerbose) - Log.Info("TV2BlasterPlugin: ShowPlugin() - End"); + Log.Debug("TV2BlasterPlugin: ShowPlugin() - End"); } /// <summary> @@ -341,8 +326,7 @@ private static void ReceivedMessage(IrssMessage received) { - if (LogVerbose) - Log.Debug("TV2BlasterPlugin: Received Message \"{0}\"", received.Type); + Log.Debug("TV2BlasterPlugin: Received Message \"{0}\"", received.Type); try { @@ -351,8 +335,7 @@ case MessageType.BlastIR: if ((received.Flags & MessageFlags.Success) == MessageFlags.Success) { - if (LogVerbose) - Log.Info("TV2BlasterPlugin: Blast successful"); + Log.Debug("TV2BlasterPlugin: Blast successful"); } else if ((received.Flags & MessageFlags.Failure) == MessageFlags.Failure) { @@ -366,8 +349,7 @@ _irServerInfo = IRServerInfo.FromBytes(received.GetDataAsBytes()); _registered = true; - if (LogVerbose) - Log.Info("TV2BlasterPlugin: Registered to IR Server"); + Log.Debug("TV2BlasterPlugin: Registered to IR Server"); } else if ((received.Flags & MessageFlags.Failure) == MessageFlags.Failure) { @@ -379,8 +361,7 @@ case MessageType.LearnIR: if ((received.Flags & MessageFlags.Success) == MessageFlags.Success) { - if (LogVerbose) - Log.Info("TV2BlasterPlugin: Learned IR Successfully"); + Log.Debug("TV2BlasterPlugin: Learned IR Successfully"); byte[] dataBytes = received.GetDataAsBytes(); @@ -747,8 +728,7 @@ /// <param name="port">Port to blast to.</param> internal static void BlastIR(string fileName, string port) { - if (LogVerbose) - Log.Debug("TV2BlasterPlugin - BlastIR(): {0}, {1}", fileName, port); + Log.Debug("TV2BlasterPlugin - BlastIR(): {0}, {1}", fileName, port); if (!_registered) throw new InvalidOperationException("Cannot Blast, not registered to an active Input Service"); @@ -1010,7 +990,6 @@ using (Settings xmlreader = new Settings(MPCommon.MPConfigFile)) { ServerHost = xmlreader.GetValueAsString("TV2BlasterPlugin", "ServerHost", "localhost"); - LogVerbose = xmlreader.GetValueAsBool("TV2BlasterPlugin", "LogVerbose", false); // MediaPortal settings ... _mpBasicHome = xmlreader.GetValueAsBool("general", "startbasichome", false); @@ -1032,7 +1011,6 @@ using (Settings xmlwriter = new Settings(MPCommon.MPConfigFile)) { xmlwriter.SetValue("TV2BlasterPlugin", "ServerHost", ServerHost); - xmlwriter.SetValueAsBool("TV2BlasterPlugin", "LogVerbose", LogVerbose); } } catch (Exception ex) Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/PluginSetup.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/PluginSetup.Designer.cs 2009-07-05 17:21:00 UTC (rev 2984) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Forms/PluginSetup.Designer.cs 2009-07-05 17:33:02 UTC (rev 2985) @@ -29,7 +29,6 @@ /// </summary> private void InitializeComponent() { - this.checkBoxLogVerbose = new System.Windows.Forms.CheckBox(); this.tabControl = new System.Windows.Forms.TabControl(); this.tabPageSetup = new System.Windows.Forms.TabPage(); this.buttonHelp = new System.Windows.Forms.Button(); @@ -52,16 +51,6 @@ this.tabPageMacros.SuspendLayout(); this.SuspendLayout(); // - // checkBoxLogVerbose - // - this.checkBoxLogVerbose.AutoSize = true; - this.checkBoxLogVerbose.Location = new System.Drawing.Point(8, 8); - this.checkBoxLogVerbose.Name = "checkBoxLogVerbose"; - this.checkBoxLogVerbose.Size = new System.Drawing.Size(108, 17); - this.checkBoxLogVerbose.TabIndex = 0; - this.checkBoxLogVerbose.Text = "Extended logging"; - this.checkBoxLogVerbose.UseVisualStyleBackColor = true; - // // tabControl // this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) @@ -80,7 +69,6 @@ // this.tabPageSetup.Controls.Add(this.buttonHelp); this.tabPageSetup.Controls.Add(this.buttonHostSetup); - this.tabPageSetup.Controls.Add(this.checkBoxLogVerbose); this.tabPageSetup.Controls.Add(this.buttonSTB); this.tabPageSetup.Location = new System.Drawing.Point(4, 22); this.tabPageSetup.Name = "tabPageSetup"; @@ -285,7 +273,6 @@ #endregion - private System.Windows.Forms.CheckBox checkBoxLogVerbose; private System.Windows.Forms.TabControl tabControl; private System.Windows.Forms.TabPage tabPageIR; private System.Windows.Forms.TabPage tabPageMacros; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-07-12 23:16:15
|
Revision: 3007 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3007&view=rev Author: chemelli_sf Date: 2009-07-12 23:16:10 +0000 (Sun, 12 Jul 2009) Log Message: ----------- Added x86 platform properly (II part) Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2009-07-12 12:41:43 UTC (rev 3006) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2009-07-12 23:16:10 UTC (rev 3007) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</ProjectGuid> <OutputType>Library</OutputType> @@ -43,6 +43,14 @@ <DocumentationFile> </DocumentationFile> </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Debug\</OutputPath> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Release\</OutputPath> + </PropertyGroup> <ItemGroup> <Reference Include="Core, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\mediaportal\Core\bin\Release\Core.dll</HintPath> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2009-07-12 12:41:43 UTC (rev 3006) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2009-07-12 23:16:10 UTC (rev 3007) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{966281F9-3898-4CB7-9940-99D49C21F170}</ProjectGuid> <OutputType>Library</OutputType> @@ -40,6 +40,14 @@ <WarningLevel>4</WarningLevel> <TreatWarningsAsErrors>true</TreatWarningsAsErrors> </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Debug\</OutputPath> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Release\</OutputPath> + </PropertyGroup> <ItemGroup> <Reference Include="CommandBase, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2009-07-12 12:41:43 UTC (rev 3006) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2009-07-12 23:16:10 UTC (rev 3007) @@ -3,7 +3,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}</ProjectGuid> <OutputType>Library</OutputType> @@ -44,6 +44,14 @@ <TreatWarningsAsErrors>true</TreatWarningsAsErrors> <UseVSHostingProcess>false</UseVSHostingProcess> </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Debug\</OutputPath> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Release\</OutputPath> + </PropertyGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2009-07-12 12:41:43 UTC (rev 3006) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2009-07-12 23:16:10 UTC (rev 3007) @@ -3,7 +3,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}</ProjectGuid> <OutputType>Library</OutputType> @@ -44,6 +44,14 @@ <TreatWarningsAsErrors>true</TreatWarningsAsErrors> <UseVSHostingProcess>false</UseVSHostingProcess> </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Debug\</OutputPath> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Release\</OutputPath> + </PropertyGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj 2009-07-12 12:41:43 UTC (rev 3006) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj 2009-07-12 23:16:10 UTC (rev 3007) @@ -3,7 +3,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}</ProjectGuid> <OutputType>Library</OutputType> @@ -44,6 +44,14 @@ <TreatWarningsAsErrors>true</TreatWarningsAsErrors> <UseVSHostingProcess>false</UseVSHostingProcess> </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Debug\</OutputPath> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Release\</OutputPath> + </PropertyGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. @@ -108,11 +116,6 @@ <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> - <Reference Include="TVCapture, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine2\Core\TVCapture\bin\Release\TVCapture.dll</HintPath> - <Private>False</Private> - </Reference> <Reference Include="TVCapture-Databases, Version=1.0.2.35455, Culture=neutral, processorArchitecture=x86"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\..\..\..\MediaPortal\trunk\TvEngine2\Core\Databases\bin\Release\TVCapture-Databases.dll</HintPath> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2009-07-12 12:41:43 UTC (rev 3006) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2009-07-12 23:16:10 UTC (rev 3007) @@ -22,33 +22,59 @@ Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU + Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|x86.ActiveCfg = Debug|x86 + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|x86.Build.0 = Debug|x86 {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.ActiveCfg = Release|Any CPU {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.Build.0 = Release|Any CPU + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|x86.ActiveCfg = Release|x86 + {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|x86.Build.0 = Release|x86 {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.Build.0 = Debug|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|x86.ActiveCfg = Debug|x86 + {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|x86.Build.0 = Debug|x86 {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.ActiveCfg = Release|Any CPU {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.Build.0 = Release|Any CPU + {966281F9-3898-4CB7-9940-99D49C21F170}.Release|x86.ActiveCfg = Release|x86 + {966281F9-3898-4CB7-9940-99D49C21F170}.Release|x86.Build.0 = Release|x86 {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.Build.0 = Debug|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|x86.ActiveCfg = Debug|x86 + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|x86.Build.0 = Debug|x86 {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.ActiveCfg = Release|Any CPU {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.Build.0 = Release|Any CPU + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|x86.ActiveCfg = Release|x86 + {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|x86.Build.0 = Release|x86 {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.Build.0 = Debug|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|x86.ActiveCfg = Debug|x86 + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|x86.Build.0 = Debug|x86 {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.ActiveCfg = Release|Any CPU {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.Build.0 = Release|Any CPU + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|x86.ActiveCfg = Release|x86 + {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|x86.Build.0 = Release|x86 {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|x86.ActiveCfg = Debug|x86 + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|x86.Build.0 = Debug|x86 {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.ActiveCfg = Release|Any CPU {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.Build.0 = Release|Any CPU + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|x86.ActiveCfg = Release|x86 + {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|x86.Build.0 = Release|x86 {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|x86.ActiveCfg = Debug|x86 + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|x86.Build.0 = Debug|x86 {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.ActiveCfg = Release|Any CPU {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|Any CPU.Build.0 = Release|Any CPU + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|x86.ActiveCfg = Release|x86 + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2009-07-12 12:41:43 UTC (rev 3006) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2009-07-12 23:16:10 UTC (rev 3007) @@ -1,7 +1,7 @@ <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <ProjectType>Local</ProjectType> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{CD395FC2-70E2-42C4-8A20-5469A0C5EB50}</ProjectGuid> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> @@ -78,6 +78,14 @@ <ErrorReport>prompt</ErrorReport> <UseVSHostingProcess>false</UseVSHostingProcess> </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Debug\</OutputPath> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> + <PlatformTarget>x86</PlatformTarget> + <OutputPath>bin\Release\</OutputPath> + </PropertyGroup> <ItemGroup> <Reference Include="Gentle.Common, Version=1.2.9.1285, Culture=neutral, PublicKeyToken=80b5de62e27be49b"> <SpecificVersion>False</SpecificVersion> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-03-11 15:13:25
|
Revision: 3497 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3497&view=rev Author: chemelli_sf Date: 2010-03-11 15:13:15 +0000 (Thu, 11 Mar 2010) Log Message: ----------- Solution and projects reference cleanup - Now .proj files are used instead of .dll - Removed AnyCPU - Removed unused configuration platforms Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2010-03-09 20:57:54 UTC (rev 3496) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2010-03-11 15:13:15 UTC (rev 3497) @@ -53,26 +53,11 @@ <OutputPath>bin\Release\</OutputPath> </PropertyGroup> <ItemGroup> - <Reference Include="Core, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Core\bin\Release\Core.dll</HintPath> - <SpecificVersion>False</SpecificVersion> - <Private>False</Private> - </Reference> - <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Dialogs\bin\Release\Dialogs.dll</HintPath> - <Private>False</Private> - </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> - <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Utils\bin\Release\Utils.dll</HintPath> - <Private>False</Private> - </Reference> </ItemGroup> <ItemGroup> <Compile Include="ExternalChannelConfig.cs" /> @@ -111,6 +96,20 @@ <SubType>Designer</SubType> </EmbeddedResource> </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Core\Core.csproj"> + <Project>{02FFFC1F-2555-4B99-8B01-3432D0673855}</Project> + <Name>Core</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Dialogs\Dialogs.csproj"> + <Project>{396C5208-5D46-4A11-92C1-FD0F2F42D7DD}</Project> + <Name>Dialogs</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Utils\Utils.csproj"> + <Project>{6DA0E4DF-6230-4642-98B5-E690BB6942BB}</Project> + <Name>Utils</Name> + </ProjectReference> + </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2010-03-09 20:57:54 UTC (rev 3496) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2010-03-11 15:13:15 UTC (rev 3497) @@ -54,14 +54,6 @@ <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Commands\Command\bin\Release\CommandBase.dll</HintPath> </Reference> - <Reference Include="Core, Version=1.0.2.20620, Culture=neutral, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Core\bin\Release\Core.dll</HintPath> - </Reference> - <Reference Include="Dialogs, Version=1.0.2.20629, Culture=neutral, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Dialogs\bin\Release\Dialogs.dll</HintPath> - </Reference> <Reference Include="IrssUtils, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Common\IrssUtils\bin\Release\IrssUtils.dll</HintPath> @@ -71,11 +63,6 @@ <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> - <Reference Include="Utils, Version=2.2.4.0, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Utils\bin\Release\Utils.dll</HintPath> - <Private>False</Private> - </Reference> <Reference Include="VariableList, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Commands\VariableList\bin\Release\VariableList.dll</HintPath> @@ -137,6 +124,20 @@ <SubType>Designer</SubType> </EmbeddedResource> </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Core\Core.csproj"> + <Project>{02FFFC1F-2555-4B99-8B01-3432D0673855}</Project> + <Name>Core</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Dialogs\Dialogs.csproj"> + <Project>{396C5208-5D46-4A11-92C1-FD0F2F42D7DD}</Project> + <Name>Dialogs</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Utils\Utils.csproj"> + <Project>{6DA0E4DF-6230-4642-98B5-E690BB6942BB}</Project> + <Name>Utils</Name> + </ProjectReference> + </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2010-03-09 20:57:54 UTC (rev 3496) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2010-03-11 15:13:15 UTC (rev 3497) @@ -84,16 +84,6 @@ </Compile> </ItemGroup> <ItemGroup> - <Reference Include="Core, Version=0.2.3.0, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Core\bin\Release\Core.dll</HintPath> - <Private>False</Private> - </Reference> - <Reference Include="Dialogs, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Dialogs\bin\Release\Dialogs.dll</HintPath> - <Private>False</Private> - </Reference> <Reference Include="IrssComms, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Common\IrssComms\bin\Release\IrssComms.dll</HintPath> @@ -106,17 +96,24 @@ <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> - <Reference Include="Utils, Version=2.2.4.0, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Utils\bin\Release\Utils.dll</HintPath> - <Private>False</Private> - </Reference> </ItemGroup> <PropertyGroup> <PostBuildEvent> </PostBuildEvent> </PropertyGroup> <ItemGroup> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Core\Core.csproj"> + <Project>{02FFFC1F-2555-4B99-8B01-3432D0673855}</Project> + <Name>Core</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Dialogs\Dialogs.csproj"> + <Project>{396C5208-5D46-4A11-92C1-FD0F2F42D7DD}</Project> + <Name>Dialogs</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Utils\Utils.csproj"> + <Project>{6DA0E4DF-6230-4642-98B5-E690BB6942BB}</Project> + <Name>Utils</Name> + </ProjectReference> <ProjectReference Include="..\..\Common\MPUtils\MPUtils.csproj"> <Project>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</Project> <Name>MPUtils</Name> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2010-03-09 20:57:54 UTC (rev 3496) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2010-03-11 15:13:15 UTC (rev 3497) @@ -93,20 +93,6 @@ </Compile> </ItemGroup> <ItemGroup> - <Reference Include="Core, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Core\bin\Release\Core.dll</HintPath> - <Private>False</Private> - </Reference> - <Reference Include="Databases, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Databases\bin\Release\Databases.dll</HintPath> - <Private>False</Private> - </Reference> - <Reference Include="Dialogs, Version=1.0.2.20629, Culture=neutral, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Dialogs\bin\Release\Dialogs.dll</HintPath> - </Reference> <Reference Include="IrssComms, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Common\IrssComms\bin\Release\IrssComms.dll</HintPath> @@ -119,21 +105,11 @@ <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Microsoft.DirectX.Direct3D.DLL</HintPath> </Reference> - <Reference Include="RemotePlugins, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\RemotePlugins\bin\Release\RemotePlugins.dll</HintPath> - <Private>False</Private> - </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> - <Reference Include="Utils, Version=0.2.2.9991, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Utils\bin\Release\Utils.dll</HintPath> - <Private>False</Private> - </Reference> </ItemGroup> <ItemGroup> <EmbeddedResource Include="Forms\MacroEditor.resx"> @@ -158,6 +134,26 @@ </PostBuildEvent> </PropertyGroup> <ItemGroup> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Core\Core.csproj"> + <Project>{02FFFC1F-2555-4B99-8B01-3432D0673855}</Project> + <Name>Core</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Databases\Databases.csproj"> + <Project>{C1BCEC3E-6074-4328-B5D9-391A457C8FFB}</Project> + <Name>Databases</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Dialogs\Dialogs.csproj"> + <Project>{396C5208-5D46-4A11-92C1-FD0F2F42D7DD}</Project> + <Name>Dialogs</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\RemotePlugins\RemotePlugins.csproj"> + <Project>{0A234721-1F13-4DF8-9B1E-64D9E3111203}</Project> + <Name>RemotePlugins</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Utils\Utils.csproj"> + <Project>{6DA0E4DF-6230-4642-98B5-E690BB6942BB}</Project> + <Name>Utils</Name> + </ProjectReference> <ProjectReference Include="..\..\Common\MPUtils\MPUtils.csproj"> <Project>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</Project> <Name>MPUtils</Name> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2010-03-09 20:57:54 UTC (rev 3496) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2010-03-11 15:13:15 UTC (rev 3497) @@ -17,54 +17,88 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Control Plugin", "MediaPortal Plugins\MP Control Plugin\MP Control Plugin.csproj", "{E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_External Projects_", "_External Projects_", "{1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core", "..\..\..\..\..\mediaportal\trunk\mediaportal\Core\Core.csproj", "{02FFFC1F-2555-4B99-8B01-3432D0673855}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TvLibrary.Interfaces", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvLibrary.Interfaces\TvLibrary.Interfaces.csproj", "{AE752FB4-7450-4150-9BAD-19EFA9D2AC37}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TVDatabase", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\TVDatabase.csproj", "{0FD8DEAE-37A4-49CC-A7BE-E86E0E0D85BD}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TvControl", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvControl\TvControl.csproj", "{0DB878C6-1B68-4DC5-B6EF-564B7C08486F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TvBusinessLayer", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\TvBusinessLayer\TvBusinessLayer.csproj", "{58C35C9D-F18D-40F2-8024-24E50D01E9C5}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utils", "..\..\..\..\..\mediaportal\trunk\mediaportal\Utils\Utils.csproj", "{6DA0E4DF-6230-4642-98B5-E690BB6942BB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dialogs", "..\..\..\..\..\mediaportal\trunk\mediaportal\Dialogs\Dialogs.csproj", "{396C5208-5D46-4A11-92C1-FD0F2F42D7DD}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Databases", "..\..\..\..\..\mediaportal\trunk\mediaportal\Databases\Databases.csproj", "{C1BCEC3E-6074-4328-B5D9-391A457C8FFB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemotePlugins", "..\..\..\..\..\mediaportal\trunk\mediaportal\RemotePlugins\RemotePlugins.csproj", "{0A234721-1F13-4DF8-9B1E-64D9E3111203}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|Any CPU.Build.0 = Debug|Any CPU {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|x86.ActiveCfg = Debug|x86 {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Debug|x86.Build.0 = Debug|x86 - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|Any CPU.Build.0 = Release|Any CPU {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|x86.ActiveCfg = Release|x86 {CD395FC2-70E2-42C4-8A20-5469A0C5EB50}.Release|x86.Build.0 = Release|x86 - {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|Any CPU.Build.0 = Debug|Any CPU {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|x86.ActiveCfg = Debug|x86 {966281F9-3898-4CB7-9940-99D49C21F170}.Debug|x86.Build.0 = Debug|x86 - {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.ActiveCfg = Release|Any CPU - {966281F9-3898-4CB7-9940-99D49C21F170}.Release|Any CPU.Build.0 = Release|Any CPU {966281F9-3898-4CB7-9940-99D49C21F170}.Release|x86.ActiveCfg = Release|x86 {966281F9-3898-4CB7-9940-99D49C21F170}.Release|x86.Build.0 = Release|x86 - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|Any CPU.Build.0 = Debug|Any CPU {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|x86.ActiveCfg = Debug|x86 {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Debug|x86.Build.0 = Debug|x86 - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.ActiveCfg = Release|Any CPU - {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|Any CPU.Build.0 = Release|Any CPU {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|x86.ActiveCfg = Release|x86 {08F57DD7-2C6E-484E-9CC5-835F70C5BC64}.Release|x86.Build.0 = Release|x86 - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|Any CPU.Build.0 = Debug|Any CPU {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|x86.ActiveCfg = Debug|x86 {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Debug|x86.Build.0 = Debug|x86 - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.ActiveCfg = Release|Any CPU - {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|Any CPU.Build.0 = Release|Any CPU {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|x86.ActiveCfg = Release|x86 {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25}.Release|x86.Build.0 = Release|x86 - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|Any CPU.Build.0 = Debug|Any CPU {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|x86.ActiveCfg = Debug|x86 {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Debug|x86.Build.0 = Debug|x86 - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|Any CPU.Build.0 = Release|Any CPU {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|x86.ActiveCfg = Release|x86 {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}.Release|x86.Build.0 = Release|x86 + {02FFFC1F-2555-4B99-8B01-3432D0673855}.Debug|x86.ActiveCfg = Debug|x86 + {02FFFC1F-2555-4B99-8B01-3432D0673855}.Debug|x86.Build.0 = Debug|x86 + {02FFFC1F-2555-4B99-8B01-3432D0673855}.Release|x86.ActiveCfg = Release|x86 + {02FFFC1F-2555-4B99-8B01-3432D0673855}.Release|x86.Build.0 = Release|x86 + {AE752FB4-7450-4150-9BAD-19EFA9D2AC37}.Debug|x86.ActiveCfg = Debug|x86 + {AE752FB4-7450-4150-9BAD-19EFA9D2AC37}.Debug|x86.Build.0 = Debug|x86 + {AE752FB4-7450-4150-9BAD-19EFA9D2AC37}.Release|x86.ActiveCfg = Release|x86 + {AE752FB4-7450-4150-9BAD-19EFA9D2AC37}.Release|x86.Build.0 = Release|x86 + {0FD8DEAE-37A4-49CC-A7BE-E86E0E0D85BD}.Debug|x86.ActiveCfg = Debug|x86 + {0FD8DEAE-37A4-49CC-A7BE-E86E0E0D85BD}.Debug|x86.Build.0 = Debug|x86 + {0FD8DEAE-37A4-49CC-A7BE-E86E0E0D85BD}.Release|x86.ActiveCfg = Release|x86 + {0FD8DEAE-37A4-49CC-A7BE-E86E0E0D85BD}.Release|x86.Build.0 = Release|x86 + {0DB878C6-1B68-4DC5-B6EF-564B7C08486F}.Debug|x86.ActiveCfg = Debug|x86 + {0DB878C6-1B68-4DC5-B6EF-564B7C08486F}.Debug|x86.Build.0 = Debug|x86 + {0DB878C6-1B68-4DC5-B6EF-564B7C08486F}.Release|x86.ActiveCfg = Release|x86 + {0DB878C6-1B68-4DC5-B6EF-564B7C08486F}.Release|x86.Build.0 = Release|x86 + {58C35C9D-F18D-40F2-8024-24E50D01E9C5}.Debug|x86.ActiveCfg = Debug|x86 + {58C35C9D-F18D-40F2-8024-24E50D01E9C5}.Debug|x86.Build.0 = Debug|x86 + {58C35C9D-F18D-40F2-8024-24E50D01E9C5}.Release|x86.ActiveCfg = Release|x86 + {58C35C9D-F18D-40F2-8024-24E50D01E9C5}.Release|x86.Build.0 = Release|x86 + {6DA0E4DF-6230-4642-98B5-E690BB6942BB}.Debug|x86.ActiveCfg = Debug|x86 + {6DA0E4DF-6230-4642-98B5-E690BB6942BB}.Debug|x86.Build.0 = Debug|x86 + {6DA0E4DF-6230-4642-98B5-E690BB6942BB}.Release|x86.ActiveCfg = Release|x86 + {6DA0E4DF-6230-4642-98B5-E690BB6942BB}.Release|x86.Build.0 = Release|x86 + {396C5208-5D46-4A11-92C1-FD0F2F42D7DD}.Debug|x86.ActiveCfg = Debug|x86 + {396C5208-5D46-4A11-92C1-FD0F2F42D7DD}.Debug|x86.Build.0 = Debug|x86 + {396C5208-5D46-4A11-92C1-FD0F2F42D7DD}.Release|x86.ActiveCfg = Release|x86 + {396C5208-5D46-4A11-92C1-FD0F2F42D7DD}.Release|x86.Build.0 = Release|x86 + {C1BCEC3E-6074-4328-B5D9-391A457C8FFB}.Debug|x86.ActiveCfg = Debug|x86 + {C1BCEC3E-6074-4328-B5D9-391A457C8FFB}.Debug|x86.Build.0 = Debug|x86 + {C1BCEC3E-6074-4328-B5D9-391A457C8FFB}.Release|x86.ActiveCfg = Release|x86 + {C1BCEC3E-6074-4328-B5D9-391A457C8FFB}.Release|x86.Build.0 = Release|x86 + {0A234721-1F13-4DF8-9B1E-64D9E3111203}.Debug|x86.ActiveCfg = Debug|x86 + {0A234721-1F13-4DF8-9B1E-64D9E3111203}.Debug|x86.Build.0 = Debug|x86 + {0A234721-1F13-4DF8-9B1E-64D9E3111203}.Release|x86.ActiveCfg = Release|x86 + {0A234721-1F13-4DF8-9B1E-64D9E3111203}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -75,5 +109,14 @@ {CD395FC2-70E2-42C4-8A20-5469A0C5EB50} = {2F3BA832-EA15-492D-AC8E-400CF3FEA715} {966281F9-3898-4CB7-9940-99D49C21F170} = {A49450EE-A82E-4BDA-A7B2-C0609EECC7CE} {08F57DD7-2C6E-484E-9CC5-835F70C5BC64} = {A49450EE-A82E-4BDA-A7B2-C0609EECC7CE} + {02FFFC1F-2555-4B99-8B01-3432D0673855} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {AE752FB4-7450-4150-9BAD-19EFA9D2AC37} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {0FD8DEAE-37A4-49CC-A7BE-E86E0E0D85BD} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {0DB878C6-1B68-4DC5-B6EF-564B7C08486F} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {58C35C9D-F18D-40F2-8024-24E50D01E9C5} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {6DA0E4DF-6230-4642-98B5-E690BB6942BB} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {396C5208-5D46-4A11-92C1-FD0F2F42D7DD} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {C1BCEC3E-6074-4328-B5D9-391A457C8FFB} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {0A234721-1F13-4DF8-9B1E-64D9E3111203} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} EndGlobalSection EndGlobal Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2010-03-09 20:57:54 UTC (rev 3496) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2010-03-11 15:13:15 UTC (rev 3497) @@ -130,26 +130,6 @@ <Name>System.Windows.Forms</Name> </Reference> <Reference Include="System.Xml" /> - <Reference Include="TvBusinessLayer, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\TvBusinessLayer\bin\Release\TvBusinessLayer.dll</HintPath> - <Private>False</Private> - </Reference> - <Reference Include="TvControl, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvControl\bin\Release\TvControl.dll</HintPath> - <Private>False</Private> - </Reference> - <Reference Include="TVDatabase, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\bin\Release\TVDatabase.dll</HintPath> - <Private>False</Private> - </Reference> - <Reference Include="TvLibrary.Interfaces, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvLibrary.Interfaces\bin\Release\TvLibrary.Interfaces.dll</HintPath> - <Private>False</Private> - </Reference> </ItemGroup> <ItemGroup> <Compile Include="Properties\AssemblyInfo.cs"> @@ -201,6 +181,24 @@ <DependentUpon>PluginSetup.cs</DependentUpon> </EmbeddedResource> </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvControl\TvControl.csproj"> + <Project>{0DB878C6-1B68-4DC5-B6EF-564B7C08486F}</Project> + <Name>TvControl</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\TvBusinessLayer\TvBusinessLayer.csproj"> + <Project>{58C35C9D-F18D-40F2-8024-24E50D01E9C5}</Project> + <Name>TvBusinessLayer</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\TVDatabase.csproj"> + <Project>{0FD8DEAE-37A4-49CC-A7BE-E86E0E0D85BD}</Project> + <Name>TVDatabase</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvLibrary.Interfaces\TvLibrary.Interfaces.csproj"> + <Project>{AE752FB4-7450-4150-9BAD-19EFA9D2AC37}</Project> + <Name>TvLibrary.Interfaces</Name> + </ProjectReference> + </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <PropertyGroup> <PreBuildEvent> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-03-11 23:53:14
|
Revision: 3499 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3499&view=rev Author: chemelli_sf Date: 2010-03-11 23:53:07 +0000 (Thu, 11 Mar 2010) Log Message: ----------- Solution and projects reference cleanup (part II) Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2010-03-11 20:13:19 UTC (rev 3498) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2010-03-11 23:53:07 UTC (rev 3499) @@ -105,6 +105,10 @@ <Project>{396C5208-5D46-4A11-92C1-FD0F2F42D7DD}</Project> <Name>Dialogs</Name> </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\DirectShowLib\DirectShowLib.csproj"> + <Project>{CE009BFA-5EF6-4153-B2A1-2FA79698A9AE}</Project> + <Name>DirectShowLib</Name> + </ProjectReference> <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Utils\Utils.csproj"> <Project>{6DA0E4DF-6230-4642-98B5-E690BB6942BB}</Project> <Name>Utils</Name> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2010-03-11 20:13:19 UTC (rev 3498) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2010-03-11 23:53:07 UTC (rev 3499) @@ -50,23 +50,11 @@ <OutputPath>bin\Release\</OutputPath> </PropertyGroup> <ItemGroup> - <Reference Include="CommandBase, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Commands\Command\bin\Release\CommandBase.dll</HintPath> - </Reference> - <Reference Include="IrssUtils, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Common\IrssUtils\bin\Release\IrssUtils.dll</HintPath> - </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> - <Reference Include="VariableList, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Commands\VariableList\bin\Release\VariableList.dll</HintPath> - </Reference> </ItemGroup> <ItemGroup> <Compile Include="CommandGotoScreen.cs" /> @@ -137,6 +125,18 @@ <Project>{6DA0E4DF-6230-4642-98B5-E690BB6942BB}</Project> <Name>Utils</Name> </ProjectReference> + <ProjectReference Include="..\..\..\IR Server Suite\Commands\Command\Command.csproj"> + <Project>{21E04B17-D850-43E7-AAD3-876C0E062BDB}</Project> + <Name>Command</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\IR Server Suite\Commands\VariableList\VariableList.csproj"> + <Project>{106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}</Project> + <Name>VariableList</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\IR Server Suite\Common\IrssUtils\IrssUtils.csproj"> + <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> + <Name>IrssUtils</Name> + </ProjectReference> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2010-03-11 20:13:19 UTC (rev 3498) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2010-03-11 23:53:07 UTC (rev 3499) @@ -84,14 +84,6 @@ </Compile> </ItemGroup> <ItemGroup> - <Reference Include="IrssComms, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Common\IrssComms\bin\Release\IrssComms.dll</HintPath> - </Reference> - <Reference Include="IrssUtils, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Common\IrssUtils\bin\Release\IrssUtils.dll</HintPath> - </Reference> <Reference Include="System" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> @@ -114,6 +106,14 @@ <Project>{6DA0E4DF-6230-4642-98B5-E690BB6942BB}</Project> <Name>Utils</Name> </ProjectReference> + <ProjectReference Include="..\..\..\IR Server Suite\Common\IrssComms\IrssComms.csproj"> + <Project>{BCAFDF45-70DD-46FD-8B98-880DDA585AD2}</Project> + <Name>IrssComms</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\IR Server Suite\Common\IrssUtils\IrssUtils.csproj"> + <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> + <Name>IrssUtils</Name> + </ProjectReference> <ProjectReference Include="..\..\Common\MPUtils\MPUtils.csproj"> <Project>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</Project> <Name>MPUtils</Name> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2010-03-11 20:13:19 UTC (rev 3498) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2010-03-11 23:53:07 UTC (rev 3499) @@ -93,14 +93,6 @@ </Compile> </ItemGroup> <ItemGroup> - <Reference Include="IrssComms, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Common\IrssComms\bin\Release\IrssComms.dll</HintPath> - </Reference> - <Reference Include="IrssUtils, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Common\IrssUtils\bin\Release\IrssUtils.dll</HintPath> - </Reference> <Reference Include="Microsoft.DirectX.Direct3D, Version=1.0.2902.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Microsoft.DirectX.Direct3D.DLL</HintPath> @@ -154,6 +146,14 @@ <Project>{6DA0E4DF-6230-4642-98B5-E690BB6942BB}</Project> <Name>Utils</Name> </ProjectReference> + <ProjectReference Include="..\..\..\IR Server Suite\Common\IrssComms\IrssComms.csproj"> + <Project>{BCAFDF45-70DD-46FD-8B98-880DDA585AD2}</Project> + <Name>IrssComms</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\IR Server Suite\Common\IrssUtils\IrssUtils.csproj"> + <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> + <Name>IrssUtils</Name> + </ProjectReference> <ProjectReference Include="..\..\Common\MPUtils\MPUtils.csproj"> <Project>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</Project> <Name>MPUtils</Name> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2010-03-11 20:13:19 UTC (rev 3498) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2010-03-11 23:53:07 UTC (rev 3499) @@ -22,12 +22,18 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core", "..\..\..\..\..\mediaportal\trunk\mediaportal\Core\Core.csproj", "{02FFFC1F-2555-4B99-8B01-3432D0673855}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TvLibrary.Interfaces", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvLibrary.Interfaces\TvLibrary.Interfaces.csproj", "{AE752FB4-7450-4150-9BAD-19EFA9D2AC37}" + ProjectSection(ProjectDependencies) = postProject + {CE009BFA-5EF6-4153-B2A1-2FA79698A9AE} = {CE009BFA-5EF6-4153-B2A1-2FA79698A9AE} + EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TVDatabase", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\TVDatabase.csproj", "{0FD8DEAE-37A4-49CC-A7BE-E86E0E0D85BD}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TvControl", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvControl\TvControl.csproj", "{0DB878C6-1B68-4DC5-B6EF-564B7C08486F}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TvBusinessLayer", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\TvBusinessLayer\TvBusinessLayer.csproj", "{58C35C9D-F18D-40F2-8024-24E50D01E9C5}" + ProjectSection(ProjectDependencies) = postProject + {CE009BFA-5EF6-4153-B2A1-2FA79698A9AE} = {CE009BFA-5EF6-4153-B2A1-2FA79698A9AE} + EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utils", "..\..\..\..\..\mediaportal\trunk\mediaportal\Utils\Utils.csproj", "{6DA0E4DF-6230-4642-98B5-E690BB6942BB}" EndProject @@ -37,6 +43,18 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemotePlugins", "..\..\..\..\..\mediaportal\trunk\mediaportal\RemotePlugins\RemotePlugins.csproj", "{0A234721-1F13-4DF8-9B1E-64D9E3111203}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DirectShowLib", "..\..\..\..\..\mediaportal\trunk\mediaportal\DirectShowLib\DirectShowLib.csproj", "{CE009BFA-5EF6-4153-B2A1-2FA79698A9AE}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IrssUtils", "..\IR Server Suite\Common\IrssUtils\IrssUtils.csproj", "{CA15769C-232E-4CA7-94FD-206A06CA3ABB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IrssComms", "..\IR Server Suite\Common\IrssComms\IrssComms.csproj", "{BCAFDF45-70DD-46FD-8B98-880DDA585AD2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VariableList", "..\IR Server Suite\Commands\VariableList\VariableList.csproj", "{106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Command", "..\IR Server Suite\Commands\Command\Command.csproj", "{21E04B17-D850-43E7-AAD3-876C0E062BDB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaPortal.Support", "..\..\..\..\..\mediaportal\trunk\mediaportal\MediaPortal.Support\MediaPortal.Support.csproj", "{BD4A3413-C9F9-4299-BB52-ED45027EE7CC}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x86 = Debug|x86 @@ -99,6 +117,30 @@ {0A234721-1F13-4DF8-9B1E-64D9E3111203}.Debug|x86.Build.0 = Debug|x86 {0A234721-1F13-4DF8-9B1E-64D9E3111203}.Release|x86.ActiveCfg = Release|x86 {0A234721-1F13-4DF8-9B1E-64D9E3111203}.Release|x86.Build.0 = Release|x86 + {CE009BFA-5EF6-4153-B2A1-2FA79698A9AE}.Debug|x86.ActiveCfg = Debug|x86 + {CE009BFA-5EF6-4153-B2A1-2FA79698A9AE}.Debug|x86.Build.0 = Debug|x86 + {CE009BFA-5EF6-4153-B2A1-2FA79698A9AE}.Release|x86.ActiveCfg = Release|x86 + {CE009BFA-5EF6-4153-B2A1-2FA79698A9AE}.Release|x86.Build.0 = Release|x86 + {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Debug|x86.ActiveCfg = Debug|x86 + {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Debug|x86.Build.0 = Debug|x86 + {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Release|x86.ActiveCfg = Release|x86 + {CA15769C-232E-4CA7-94FD-206A06CA3ABB}.Release|x86.Build.0 = Release|x86 + {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Debug|x86.ActiveCfg = Debug|x86 + {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Debug|x86.Build.0 = Debug|x86 + {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Release|x86.ActiveCfg = Release|x86 + {BCAFDF45-70DD-46FD-8B98-880DDA585AD2}.Release|x86.Build.0 = Release|x86 + {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Debug|x86.ActiveCfg = Debug|x86 + {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Debug|x86.Build.0 = Debug|x86 + {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Release|x86.ActiveCfg = Release|x86 + {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}.Release|x86.Build.0 = Release|x86 + {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Debug|x86.ActiveCfg = Debug|x86 + {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Debug|x86.Build.0 = Debug|x86 + {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Release|x86.ActiveCfg = Release|x86 + {21E04B17-D850-43E7-AAD3-876C0E062BDB}.Release|x86.Build.0 = Release|x86 + {BD4A3413-C9F9-4299-BB52-ED45027EE7CC}.Debug|x86.ActiveCfg = Debug|x86 + {BD4A3413-C9F9-4299-BB52-ED45027EE7CC}.Debug|x86.Build.0 = Debug|x86 + {BD4A3413-C9F9-4299-BB52-ED45027EE7CC}.Release|x86.ActiveCfg = Release|x86 + {BD4A3413-C9F9-4299-BB52-ED45027EE7CC}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -118,5 +160,11 @@ {396C5208-5D46-4A11-92C1-FD0F2F42D7DD} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} {C1BCEC3E-6074-4328-B5D9-391A457C8FFB} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} {0A234721-1F13-4DF8-9B1E-64D9E3111203} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {CE009BFA-5EF6-4153-B2A1-2FA79698A9AE} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {CA15769C-232E-4CA7-94FD-206A06CA3ABB} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {BCAFDF45-70DD-46FD-8B98-880DDA585AD2} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {21E04B17-D850-43E7-AAD3-876C0E062BDB} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {BD4A3413-C9F9-4299-BB52-ED45027EE7CC} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} EndGlobalSection EndGlobal Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2010-03-11 20:13:19 UTC (rev 3498) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2010-03-11 23:53:07 UTC (rev 3499) @@ -98,18 +98,6 @@ <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\references\Gentle.Framework.dll</HintPath> <Private>False</Private> </Reference> - <Reference Include="IrssComms, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Common\IrssComms\bin\Release\IrssComms.dll</HintPath> - </Reference> - <Reference Include="IrssUtils, Version=1.4.2.0, Culture=neutral, PublicKeyToken=dc0b77bf2c754d95, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\IR Server Suite\IR Server Suite\Common\IrssUtils\bin\Release\IrssUtils.dll</HintPath> - </Reference> - <Reference Include="MPUtils, Version=1.4.2.3129, Culture=neutral, processorArchitecture=x86"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\Common\MPUtils\bin\Release\MPUtils.dll</HintPath> - </Reference> <Reference Include="PluginBase, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\Plugins\PluginBase\bin\Release\PluginBase.dll</HintPath> @@ -198,6 +186,18 @@ <Project>{AE752FB4-7450-4150-9BAD-19EFA9D2AC37}</Project> <Name>TvLibrary.Interfaces</Name> </ProjectReference> + <ProjectReference Include="..\..\..\IR Server Suite\Common\IrssComms\IrssComms.csproj"> + <Project>{BCAFDF45-70DD-46FD-8B98-880DDA585AD2}</Project> + <Name>IrssComms</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\IR Server Suite\Common\IrssUtils\IrssUtils.csproj"> + <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> + <Name>IrssUtils</Name> + </ProjectReference> + <ProjectReference Include="..\..\Common\MPUtils\MPUtils.csproj"> + <Project>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</Project> + <Name>MPUtils</Name> + </ProjectReference> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <PropertyGroup> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-11-18 18:15:49
|
Revision: 3954 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3954&view=rev Author: chef_koch Date: 2010-11-18 18:15:42 +0000 (Thu, 18 Nov 2010) Log Message: ----------- updated framework to 3.5 for mp projects Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2010-11-18 18:01:39 UTC (rev 3953) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2010-11-18 18:15:42 UTC (rev 3954) @@ -17,6 +17,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -54,6 +55,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2010-11-18 18:01:39 UTC (rev 3953) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2010-11-18 18:15:42 UTC (rev 3954) @@ -17,6 +17,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -51,6 +52,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2010-11-18 18:01:39 UTC (rev 3953) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2010-11-18 18:15:42 UTC (rev 3954) @@ -20,6 +20,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -85,6 +86,9 @@ </ItemGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2010-11-18 18:01:39 UTC (rev 3953) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2010-11-18 18:15:42 UTC (rev 3954) @@ -20,6 +20,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -98,6 +99,9 @@ <HintPath>..\..\..\..\..\..\mediaportal\trunk\mediaportal\xbmc\bin\Release\Microsoft.DirectX.Direct3D.DLL</HintPath> </Reference> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2010-11-18 18:01:39 UTC (rev 3953) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2010-11-18 18:15:42 UTC (rev 3954) @@ -29,6 +29,7 @@ <SignAssembly>false</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <OldToolsVersion>2.0</OldToolsVersion> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <OutputPath>bin\Debug\</OutputPath> @@ -111,6 +112,9 @@ <Reference Include="System"> <Name>System</Name> </Reference> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing"> <Name>System.Drawing</Name> </Reference> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-11-18 18:18:23
|
Revision: 3955 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3955&view=rev Author: chef_koch Date: 2010-11-18 18:18:16 +0000 (Thu, 18 Nov 2010) Log Message: ----------- updated project configurations for mp projects Debug: use DEBUG;Trace, no code optimization, no error on warnings Release: no symbols, use code optimization, no error on warnings Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2010-11-18 18:15:42 UTC (rev 3954) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2010-11-18 18:18:16 UTC (rev 3955) @@ -48,10 +48,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2010-11-18 18:15:42 UTC (rev 3954) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2010-11-18 18:18:16 UTC (rev 3955) @@ -45,10 +45,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2010-11-18 18:15:42 UTC (rev 3954) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2010-11-18 18:18:16 UTC (rev 3955) @@ -49,10 +49,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2010-11-18 18:15:42 UTC (rev 3954) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2010-11-18 18:18:16 UTC (rev 3955) @@ -49,10 +49,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2010-11-18 18:15:42 UTC (rev 3954) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2010-11-18 18:18:16 UTC (rev 3955) @@ -83,10 +83,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="Gentle.Common, Version=1.2.9.1285, Culture=neutral, PublicKeyToken=80b5de62e27be49b"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-11-18 18:35:43
|
Revision: 3956 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3956&view=rev Author: chef_koch Date: 2010-11-18 18:35:37 +0000 (Thu, 18 Nov 2010) Log Message: ----------- fixed ambiguous references Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Forms/MPAction.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPCommon.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandSendAction.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Forms/EditSendAction.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Forms/MPAction.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Forms/MPAction.cs 2010-11-18 18:18:16 UTC (rev 3955) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/Forms/MPAction.cs 2010-11-18 18:35:37 UTC (rev 3956) @@ -23,6 +23,7 @@ using System; using System.Windows.Forms; using MediaPortal.GUI.Library; +using Action = MediaPortal.GUI.Library.Action; namespace MPUtils.Forms { Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPCommon.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPCommon.cs 2010-11-18 18:18:16 UTC (rev 3955) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPCommon.cs 2010-11-18 18:35:37 UTC (rev 3956) @@ -28,6 +28,7 @@ using MediaPortal.Player; using MediaPortal.Profile; using MediaPortal.Util; +using Action = MediaPortal.GUI.Library.Action; namespace MPUtils { Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandSendAction.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandSendAction.cs 2010-11-18 18:18:16 UTC (rev 3955) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandSendAction.cs 2010-11-18 18:35:37 UTC (rev 3956) @@ -23,6 +23,7 @@ using System; using System.Windows.Forms; using MediaPortal.GUI.Library; +using Action = MediaPortal.GUI.Library.Action; namespace Commands.MediaPortal { Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Forms/EditSendAction.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Forms/EditSendAction.cs 2010-11-18 18:18:16 UTC (rev 3955) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Forms/EditSendAction.cs 2010-11-18 18:35:37 UTC (rev 3956) @@ -23,6 +23,7 @@ using System; using System.Windows.Forms; using MediaPortal.GUI.Library; +using Action = MediaPortal.GUI.Library.Action; namespace Commands.MediaPortal { Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs 2010-11-18 18:18:16 UTC (rev 3955) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs 2010-11-18 18:35:37 UTC (rev 3956) @@ -34,6 +34,7 @@ using MediaPortal.GUI.Library; using MediaPortal.Profile; using MPUtils; +using Action = MediaPortal.GUI.Library.Action; namespace MediaPortal.Plugins { Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs 2010-11-18 18:18:16 UTC (rev 3955) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputHandler.cs 2010-11-18 18:35:37 UTC (rev 3956) @@ -32,6 +32,7 @@ using MediaPortal.Profile; using MediaPortal.Util; using MPUtils; +using Action = MediaPortal.GUI.Library.Action; namespace MediaPortal.Plugins { Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs 2010-11-18 18:18:16 UTC (rev 3955) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs 2010-11-18 18:35:37 UTC (rev 3956) @@ -34,6 +34,7 @@ using MediaPortal.Configuration; using MediaPortal.GUI.Library; using MediaPortal.UserInterface.Controls; +using Action = MediaPortal.GUI.Library.Action; namespace MediaPortal.Plugins { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-11-18 18:44:14
|
Revision: 3957 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3957&view=rev Author: chef_koch Date: 2010-11-18 18:44:08 +0000 (Thu, 18 Nov 2010) Log Message: ----------- updated ignore list for mp projects Property Changed: ---------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/ Property changes on: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-12-17 16:59:20
|
Revision: 4042 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4042&view=rev Author: chef_koch Date: 2010-12-17 16:59:14 +0000 (Fri, 17 Dec 2010) Log Message: ----------- made irss compatible with latest svn, should also be compatible with older MediaPortal releases Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPCommon.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandHibernate.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandStandBy.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs Removed Paths: ------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Common.cs Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPCommon.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPCommon.cs 2010-12-17 08:46:22 UTC (rev 4041) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPCommon.cs 2010-12-17 16:59:14 UTC (rev 4042) @@ -42,12 +42,12 @@ /// <summary> /// Folder for Input Device data default files. /// </summary> - public static readonly string CustomInputDefault = Config.GetFolder(Config.Dir.CustomInputDefault); + public static readonly string CustomInputDefault = Config.GetSubFolder(Config.Dir.Base, @"Defaults\InputDeviceMappings"); /// <summary> /// Folder for Custom Input Device data files. /// </summary> - public static readonly string CustomInputDevice = Config.GetFolder(Config.Dir.CustomInputDevice); + public static readonly string CustomInputDevice = Config.GetSubFolder(Config.Dir.Config, @"InputDeviceMappings"); /// <summary> /// Path to the MediaPortal configuration file. Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandHibernate.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandHibernate.cs 2010-12-17 08:46:22 UTC (rev 4041) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandHibernate.cs 2010-12-17 16:59:14 UTC (rev 4042) @@ -24,6 +24,7 @@ using MediaPortal.Player; using MediaPortal.Profile; using MediaPortal.Util; +using MPUtils; namespace Commands.MediaPortal { @@ -79,7 +80,7 @@ public override void Execute(VariableList variables) { bool mpBasicHome = false; - using (Settings xmlreader = new Settings(Common.MPConfigFile)) + using (Settings xmlreader = new Settings(MPCommon.MPConfigFile)) mpBasicHome = xmlreader.GetValueAsBool("general", "startbasichome", false); GUIGraphicsContext.ResetLastActivity(); Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandStandBy.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandStandBy.cs 2010-12-17 08:46:22 UTC (rev 4041) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/CommandStandBy.cs 2010-12-17 16:59:14 UTC (rev 4042) @@ -24,6 +24,7 @@ using MediaPortal.Player; using MediaPortal.Profile; using MediaPortal.Util; +using MPUtils; namespace Commands.MediaPortal { @@ -79,7 +80,7 @@ public override void Execute(VariableList variables) { bool mpBasicHome = false; - using (Settings xmlreader = new Settings(Common.MPConfigFile)) + using (Settings xmlreader = new Settings(MPCommon.MPConfigFile)) mpBasicHome = xmlreader.GetValueAsBool("general", "startbasichome", false); GUIGraphicsContext.ResetLastActivity(); Deleted: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Common.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Common.cs 2010-12-17 08:46:22 UTC (rev 4041) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/Common.cs 2010-12-17 16:59:14 UTC (rev 4042) @@ -1,44 +0,0 @@ -#region Copyright (C) 2005-2009 Team MediaPortal - -// Copyright (C) 2005-2009 Team MediaPortal -// http://www.team-mediaportal.com -// -// This Program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2, or (at your option) -// any later version. -// -// This Program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with GNU Make; see the file COPYING. If not, write to -// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -// http://www.gnu.org/copyleft/gpl.html - -#endregion - -using MediaPortal.Configuration; - -namespace Commands.MediaPortal -{ - internal static class Common - { - /// <summary> - /// Folder for Input Device data default files. - /// </summary> - public static readonly string CustomInputDefault = Config.GetFolder(Config.Dir.CustomInputDefault) + "\\"; - - /// <summary> - /// Folder for Custom Input Device data files. - /// </summary> - public static readonly string CustomInputDevice = Config.GetFolder(Config.Dir.CustomInputDevice) + "\\"; - - /// <summary> - /// Path to the MediaPortal configuration file. - /// </summary> - public static readonly string MPConfigFile = Config.GetFolder(Config.Dir.Config) + "\\MediaPortal.xml"; - } -} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2010-12-17 08:46:22 UTC (rev 4041) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2010-12-17 16:59:14 UTC (rev 4042) @@ -72,7 +72,6 @@ <Compile Include="CommandReboot.cs" /> <Compile Include="CommandShutdown.cs" /> <Compile Include="CommandHibernate.cs" /> - <Compile Include="Common.cs" /> <Compile Include="CommandStandBy.cs" /> <Compile Include="CommandSendAction.cs" /> <Compile Include="CommandSendMessage.cs" /> @@ -146,6 +145,10 @@ <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> <Name>IrssUtils</Name> </ProjectReference> + <ProjectReference Include="..\MPUtils\MPUtils.csproj"> + <Project>{08F57DD7-2C6E-484E-9CC5-835F70C5BC64}</Project> + <Name>MPUtils</Name> + </ProjectReference> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs 2010-12-17 08:46:22 UTC (rev 4041) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs 2010-12-17 16:59:14 UTC (rev 4042) @@ -178,6 +178,9 @@ private void LoadMapping(string xmlFile, bool defaults) { + string pathDefault = Path.Combine(MPUtils.MPCommon.CustomInputDefault, xmlFile); + string pathCustom = Path.Combine(MPUtils.MPCommon.CustomInputDevice, xmlFile); + try { groupBoxLayer.Enabled = false; @@ -185,9 +188,9 @@ groupBoxAction.Enabled = false; treeMapping.Nodes.Clear(); XmlDocument doc = new XmlDocument(); - string path = Config.GetFolder(Config.Dir.Base) + "\\InputDeviceMappings\\defaults\\" + xmlFile; - if (!defaults && File.Exists(Config.GetFile(Config.Dir.CustomInputDevice, xmlFile))) - path = Config.GetFile(Config.Dir.CustomInputDevice, xmlFile); + string path = pathDefault; + if (!defaults && File.Exists(pathCustom)) + path = pathCustom; if (!File.Exists(path)) { MessageBox.Show( @@ -376,26 +379,29 @@ catch (Exception ex) { Log.Error(ex); - File.Delete(Config.GetFile(Config.Dir.CustomInputDevice, xmlFile)); + File.Delete(pathCustom); LoadMapping(xmlFile, true); } } private bool SaveMapping(string xmlFile) { + string customDir = MPUtils.MPCommon.CustomInputDevice; + string pathCustom = Path.Combine(customDir, xmlFile); + try { - Directory.CreateDirectory(Config.GetFolder(Config.Dir.CustomInputDevice)); + Directory.CreateDirectory(customDir); } catch { - Log.Info("MAP: Error accessing directory \"InputDeviceMappings\\custom\""); + Log.Info("MAP: Error accessing directory '{0}'", customDir); } try { using ( - XmlTextWriter writer = new XmlTextWriter(Config.GetFile(Config.Dir.CustomInputDevice, xmlFile), Encoding.UTF8) + XmlTextWriter writer = new XmlTextWriter(pathCustom, Encoding.UTF8) ) { writer.Formatting = Formatting.Indented; @@ -1249,7 +1255,7 @@ private void buttonDefault_Click(object sender, EventArgs e) { string fileName = _inputClassName + ".xml"; - string filePath = Config.GetFile(Config.Dir.CustomInputDevice, fileName); + string filePath = Path.Combine(MPUtils.MPCommon.CustomInputDevice, fileName); if (File.Exists(filePath)) File.Delete(filePath); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-12-29 09:01:08
|
Revision: 4055 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4055&view=rev Author: chemelli_sf Date: 2010-12-29 09:00:59 +0000 (Wed, 29 Dec 2010) Log Message: ----------- Updated references for TV3 Blaster plugin Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2010-12-23 16:49:51 UTC (rev 4054) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2010-12-29 09:00:59 UTC (rev 4055) @@ -47,6 +47,10 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaPortal.Support", "..\..\..\..\..\mediaportal\trunk\mediaportal\MediaPortal.Support\MediaPortal.Support.csproj", "{BD4A3413-C9F9-4299-BB52-ED45027EE7CC}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PluginBase", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\Plugins\PluginBase\PluginBase.csproj", "{5EE20DC0-B22B-4BDB-828B-8DC5723A1873}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SetupControls", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\SetupControls\SetupControls.csproj", "{A2792D3C-04C1-4A92-9383-A33D59C54D8D}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x86 = Debug|x86 @@ -129,6 +133,14 @@ {BD4A3413-C9F9-4299-BB52-ED45027EE7CC}.Debug|x86.Build.0 = Debug|x86 {BD4A3413-C9F9-4299-BB52-ED45027EE7CC}.Release|x86.ActiveCfg = Release|x86 {BD4A3413-C9F9-4299-BB52-ED45027EE7CC}.Release|x86.Build.0 = Release|x86 + {5EE20DC0-B22B-4BDB-828B-8DC5723A1873}.Debug|x86.ActiveCfg = Debug|x86 + {5EE20DC0-B22B-4BDB-828B-8DC5723A1873}.Debug|x86.Build.0 = Debug|x86 + {5EE20DC0-B22B-4BDB-828B-8DC5723A1873}.Release|x86.ActiveCfg = Release|x86 + {5EE20DC0-B22B-4BDB-828B-8DC5723A1873}.Release|x86.Build.0 = Release|x86 + {A2792D3C-04C1-4A92-9383-A33D59C54D8D}.Debug|x86.ActiveCfg = Debug|x86 + {A2792D3C-04C1-4A92-9383-A33D59C54D8D}.Debug|x86.Build.0 = Debug|x86 + {A2792D3C-04C1-4A92-9383-A33D59C54D8D}.Release|x86.ActiveCfg = Release|x86 + {A2792D3C-04C1-4A92-9383-A33D59C54D8D}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -153,5 +165,7 @@ {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} {21E04B17-D850-43E7-AAD3-876C0E062BDB} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} {BD4A3413-C9F9-4299-BB52-ED45027EE7CC} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {5EE20DC0-B22B-4BDB-828B-8DC5723A1873} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} + {A2792D3C-04C1-4A92-9383-A33D59C54D8D} = {1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD} EndGlobalSection EndGlobal Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2010-12-23 16:49:51 UTC (rev 4054) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2010-12-29 09:00:59 UTC (rev 4055) @@ -101,16 +101,6 @@ <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TVDatabase\references\Gentle.Framework.dll</HintPath> <Private>False</Private> </Reference> - <Reference Include="PluginBase, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\Plugins\PluginBase\bin\Release\PluginBase.dll</HintPath> - <Private>False</Private> - </Reference> - <Reference Include="SetupControls, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\SetupControls\bin\Release\SetupControls.dll</HintPath> - <Private>False</Private> - </Reference> <Reference Include="System"> <Name>System</Name> </Reference> @@ -177,6 +167,14 @@ </EmbeddedResource> </ItemGroup> <ItemGroup> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\Plugins\PluginBase\PluginBase.csproj"> + <Project>{5EE20DC0-B22B-4BDB-828B-8DC5723A1873}</Project> + <Name>PluginBase</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\SetupControls\SetupControls.csproj"> + <Project>{A2792D3C-04C1-4A92-9383-A33D59C54D8D}</Project> + <Name>SetupControls</Name> + </ProjectReference> <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvControl\TvControl.csproj"> <Project>{0DB878C6-1B68-4DC5-B6EF-564B7C08486F}</Project> <Name>TvControl</Name> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2011-03-26 09:50:35
|
Revision: 4153 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4153&view=rev Author: chef_koch Date: 2011-03-26 09:50:29 +0000 (Sat, 26 Mar 2011) Log Message: ----------- updated projects to vs2010 Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2011-03-26 08:34:09 UTC (rev 4152) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MPUtils/MPUtils.csproj 2011-03-26 09:50:29 UTC (rev 4153) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -12,11 +13,6 @@ <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> <SignAssembly>false</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> - <FileUpgradeFlags> - </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> - <UpgradeBackupLocation> - </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2011-03-26 08:34:09 UTC (rev 4152) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/Common/MediaPortalCommands/MediaPortalCommands.csproj 2011-03-26 09:50:29 UTC (rev 4153) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -12,11 +13,6 @@ <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> <SignAssembly>false</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> - <FileUpgradeFlags> - </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> - <UpgradeBackupLocation> - </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2011-03-26 08:34:09 UTC (rev 4152) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2011-03-26 09:50:29 UTC (rev 4153) @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -17,7 +17,6 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Properties/Resources.Designer.cs 2011-03-26 08:34:09 UTC (rev 4152) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Properties/Resources.Designer.cs 2011-03-26 09:50:29 UTC (rev 4153) @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. -// Runtime Version:2.0.50727.42 +// Runtime Version:4.0.30319.225 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -19,7 +19,7 @@ // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2011-03-26 08:34:09 UTC (rev 4152) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj 2011-03-26 09:50:29 UTC (rev 4153) @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -17,7 +17,6 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj 2011-03-26 08:34:09 UTC (rev 4152) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/TV2 Blaster Plugin/TV2 Blaster Plugin.csproj 2011-03-26 09:50:29 UTC (rev 4153) @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -17,7 +17,6 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> </PropertyGroup> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2011-03-26 08:34:09 UTC (rev 4152) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln 2011-03-26 09:50:29 UTC (rev 4153) @@ -1,12 +1,14 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MP plugins", "MP plugins", "{79836E52-FF93-4FD0-818B-03FAD48D426E}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TVServer plugins", "TVServer plugins", "{2F3BA832-EA15-492D-AC8E-400CF3FEA715}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{A49450EE-A82E-4BDA-A7B2-C0609EECC7CE}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_External Projects_", "_External Projects_", "{1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD}" +EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV3 Blaster Plugin", "TVServer plugins\TV3 Blaster Plugin\TV3 Blaster Plugin.csproj", "{CD395FC2-70E2-42C4-8A20-5469A0C5EB50}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaPortalCommands", "Common\MediaPortalCommands\MediaPortalCommands.csproj", "{966281F9-3898-4CB7-9940-99D49C21F170}" @@ -17,8 +19,6 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MP Control Plugin", "MediaPortal Plugins\MP Control Plugin\MP Control Plugin.csproj", "{E8BEBBCC-1EE0-488D-8806-98ADCB7F0479}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_External Projects_", "_External Projects_", "{1F14A9F2-92B5-4126-AA0D-AAB2B9C491CD}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core", "..\..\..\..\..\mediaportal\trunk\mediaportal\Core\Core.csproj", "{02FFFC1F-2555-4B99-8B01-3432D0673855}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TvLibrary.Interfaces", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\TvLibrary.Interfaces\TvLibrary.Interfaces.csproj", "{AE752FB4-7450-4150-9BAD-19EFA9D2AC37}" @@ -51,6 +51,8 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SetupControls", "..\..\..\..\..\mediaportal\trunk\TvEngine3\TVLibrary\SetupControls\SetupControls.csproj", "{A2792D3C-04C1-4A92-9383-A33D59C54D8D}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TV2 Blaster Plugin", "MediaPortal Plugins\TV2 Blaster Plugin\TV2 Blaster Plugin.csproj", "{7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x86 = Debug|x86 @@ -141,6 +143,8 @@ {A2792D3C-04C1-4A92-9383-A33D59C54D8D}.Debug|x86.Build.0 = Debug|x86 {A2792D3C-04C1-4A92-9383-A33D59C54D8D}.Release|x86.ActiveCfg = Release|x86 {A2792D3C-04C1-4A92-9383-A33D59C54D8D}.Release|x86.Build.0 = Release|x86 + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Debug|x86.ActiveCfg = Debug|x86 + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90}.Release|x86.ActiveCfg = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -148,6 +152,7 @@ GlobalSection(NestedProjects) = preSolution {907DCA39-A5E0-4EFA-B1F6-5FBE2C1BCD25} = {79836E52-FF93-4FD0-818B-03FAD48D426E} {E8BEBBCC-1EE0-488D-8806-98ADCB7F0479} = {79836E52-FF93-4FD0-818B-03FAD48D426E} + {7946D42A-4BCB-4D79-80EB-BA9B17CE2E90} = {79836E52-FF93-4FD0-818B-03FAD48D426E} {CD395FC2-70E2-42C4-8A20-5469A0C5EB50} = {2F3BA832-EA15-492D-AC8E-400CF3FEA715} {966281F9-3898-4CB7-9940-99D49C21F170} = {A49450EE-A82E-4BDA-A7B2-C0609EECC7CE} {08F57DD7-2C6E-484E-9CC5-835F70C5BC64} = {A49450EE-A82E-4BDA-A7B2-C0609EECC7CE} Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2011-03-26 08:34:09 UTC (rev 4152) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj 2011-03-26 09:50:29 UTC (rev 4153) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <ProjectType>Local</ProjectType> <ProductVersion>9.0.30729</ProductVersion> @@ -28,7 +29,6 @@ </UpgradeBackupLocation> <SignAssembly>false</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> - <OldToolsVersion>2.0</OldToolsVersion> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ar...@us...> - 2011-03-28 21:22:18
|
Revision: 4155 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4155&view=rev Author: arion_p Date: 2011-03-28 21:22:08 +0000 (Mon, 28 Mar 2011) Log Message: ----------- Added version compatibility attributes (in preparation of MP 1.2.0 Beta) Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/MacroEditor.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Forms/SetupForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MP Control Plugin.csproj trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/MPControlPlugin.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal plugins.sln trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/MediaPortal Plugins/TVServer plugins/TV3 Blaster Plugin/TV3 Blaster Plugin.csproj Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/MacroEditor.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/MacroEditor.cs 2011-03-27 19:59:02 UTC (rev 4154) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/MacroEditor.cs 2011-03-28 21:22:08 UTC (rev 4155) @@ -60,7 +60,7 @@ textBoxName.Text = name; textBoxName.Enabled = false; - string fileName = MPBlastZonePlugin.FolderMacros + name + Common.FileExtensionMacro; + string fileName = MPBlastZonePlugin.FolderMacros + name + IrssUtils.Common.FileExtensionMacro; ReadFromFile(fileName); } @@ -72,31 +72,31 @@ { comboBoxCommands.Items.Clear(); - comboBoxCommands.Items.Add(Common.UITextRun); - comboBoxCommands.Items.Add(Common.UITextPause); - comboBoxCommands.Items.Add(Common.UITextSerial); - comboBoxCommands.Items.Add(Common.UITextWindowMsg); - comboBoxCommands.Items.Add(Common.UITextTcpMsg); - comboBoxCommands.Items.Add(Common.UITextHttpMsg); - comboBoxCommands.Items.Add(Common.UITextKeys); - comboBoxCommands.Items.Add(Common.UITextMouse); - comboBoxCommands.Items.Add(Common.UITextEject); - comboBoxCommands.Items.Add(Common.UITextPopup); - comboBoxCommands.Items.Add(Common.UITextGotoScreen); - //comboBoxCommands.Items.Add(Common.UITextWindowState); - comboBoxCommands.Items.Add(Common.UITextFocus); - comboBoxCommands.Items.Add(Common.UITextExit); - comboBoxCommands.Items.Add(Common.UITextSendMPAction); - comboBoxCommands.Items.Add(Common.UITextSendMPMsg); - comboBoxCommands.Items.Add(Common.UITextVirtualKB); - comboBoxCommands.Items.Add(Common.UITextSmsKB); - comboBoxCommands.Items.Add(Common.UITextBeep); - comboBoxCommands.Items.Add(Common.UITextSound); - comboBoxCommands.Items.Add(Common.UITextDisplayMode); - comboBoxCommands.Items.Add(Common.UITextStandby); - comboBoxCommands.Items.Add(Common.UITextHibernate); - comboBoxCommands.Items.Add(Common.UITextReboot); - comboBoxCommands.Items.Add(Common.UITextShutdown); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextRun); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextPause); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextSerial); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextWindowMsg); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextTcpMsg); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextHttpMsg); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextKeys); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextMouse); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextEject); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextPopup); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextGotoScreen); + //comboBoxCommands.Items.Add(IrssUtils.Common.UITextWindowState); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextFocus); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextExit); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextSendMPAction); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextSendMPMsg); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextVirtualKB); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextSmsKB); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextBeep); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextSound); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextDisplayMode); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextStandby); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextHibernate); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextReboot); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextShutdown); string[] fileList = MPBlastZonePlugin.GetFileList(true); if (fileList != null && fileList.Length > 0) @@ -173,155 +173,155 @@ string selected = comboBoxCommands.SelectedItem as string; string newCommand = null; - if (selected.Equals(Common.UITextRun, StringComparison.OrdinalIgnoreCase)) + if (selected.Equals(IrssUtils.Common.UITextRun, StringComparison.OrdinalIgnoreCase)) { ExternalProgram externalProgram = new ExternalProgram(); if (externalProgram.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixRun + externalProgram.CommandString; + newCommand = IrssUtils.Common.CmdPrefixRun + externalProgram.CommandString; } - else if (selected.Equals(Common.UITextPause, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextPause, StringComparison.OrdinalIgnoreCase)) { PauseTime pauseTime = new PauseTime(); if (pauseTime.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixPause + pauseTime.Time; + newCommand = IrssUtils.Common.CmdPrefixPause + pauseTime.Time; } - else if (selected.Equals(Common.UITextSerial, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextSerial, StringComparison.OrdinalIgnoreCase)) { SerialCommand serialCommand = new SerialCommand(); if (serialCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixSerial + serialCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixSerial + serialCommand.CommandString; } - else if (selected.Equals(Common.UITextWindowMsg, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextWindowMsg, StringComparison.OrdinalIgnoreCase)) { MessageCommand messageCommand = new MessageCommand(); if (messageCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixWindowMsg + messageCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixWindowMsg + messageCommand.CommandString; } - else if (selected.Equals(Common.UITextTcpMsg, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextTcpMsg, StringComparison.OrdinalIgnoreCase)) { TcpMessageCommand tcpMessageCommand = new TcpMessageCommand(); if (tcpMessageCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixTcpMsg + tcpMessageCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixTcpMsg + tcpMessageCommand.CommandString; } - else if (selected.Equals(Common.UITextHttpMsg, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextHttpMsg, StringComparison.OrdinalIgnoreCase)) { HttpMessageCommand httpMessageCommand = new HttpMessageCommand(); if (httpMessageCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixHttpMsg + httpMessageCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixHttpMsg + httpMessageCommand.CommandString; } - else if (selected.Equals(Common.UITextKeys, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextKeys, StringComparison.OrdinalIgnoreCase)) { KeysCommand keysCommand = new KeysCommand(); if (keysCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixKeys + keysCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixKeys + keysCommand.CommandString; } - else if (selected.Equals(Common.UITextMouse, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextMouse, StringComparison.OrdinalIgnoreCase)) { MouseCommand mouseCommand = new MouseCommand(); if (mouseCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixMouse + mouseCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixMouse + mouseCommand.CommandString; } - else if (selected.Equals(Common.UITextEject, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextEject, StringComparison.OrdinalIgnoreCase)) { EjectCommand ejectCommand = new EjectCommand(); if (ejectCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixEject + ejectCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixEject + ejectCommand.CommandString; } - else if (selected.Equals(Common.UITextPopup, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextPopup, StringComparison.OrdinalIgnoreCase)) { PopupMessage popupMessage = new PopupMessage(); if (popupMessage.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixPopup + popupMessage.CommandString; + newCommand = IrssUtils.Common.CmdPrefixPopup + popupMessage.CommandString; } - else if (selected.Equals(Common.UITextGotoScreen, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextGotoScreen, StringComparison.OrdinalIgnoreCase)) { GoToScreen goToScreen = new GoToScreen(); if (goToScreen.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixGotoScreen + goToScreen.CommandString; + newCommand = IrssUtils.Common.CmdPrefixGotoScreen + goToScreen.CommandString; } /* - else if (selected.Equals(Common.UITextWindowState, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextWindowState, StringComparison.OrdinalIgnoreCase)) { - newCommand = Common.CmdPrefixWindowState; + newCommand = IrssUtils.Common.CmdPrefixWindowState; } */ - else if (selected.Equals(Common.UITextFocus, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextFocus, StringComparison.OrdinalIgnoreCase)) { - newCommand = Common.CmdPrefixFocus; + newCommand = IrssUtils.Common.CmdPrefixFocus; } - else if (selected.Equals(Common.UITextExit, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextExit, StringComparison.OrdinalIgnoreCase)) { - newCommand = Common.CmdPrefixExit; + newCommand = IrssUtils.Common.CmdPrefixExit; } - else if (selected.Equals(Common.UITextSendMPAction, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextSendMPAction, StringComparison.OrdinalIgnoreCase)) { MPAction edit = new MPAction(); if (edit.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixSendMPAction + edit.CommandString; + newCommand = IrssUtils.Common.CmdPrefixSendMPAction + edit.CommandString; } - else if (selected.Equals(Common.UITextSendMPMsg, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextSendMPMsg, StringComparison.OrdinalIgnoreCase)) { MPMessage edit = new MPMessage(); if (edit.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixSendMPMsg + edit.CommandString; + newCommand = IrssUtils.Common.CmdPrefixSendMPMsg + edit.CommandString; } - else if (selected.Equals(Common.UITextVirtualKB, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextVirtualKB, StringComparison.OrdinalIgnoreCase)) { - newCommand = Common.CmdPrefixVirtualKB; + newCommand = IrssUtils.Common.CmdPrefixVirtualKB; } - else if (selected.Equals(Common.UITextSmsKB, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextSmsKB, StringComparison.OrdinalIgnoreCase)) { - newCommand = Common.CmdPrefixSmsKB; + newCommand = IrssUtils.Common.CmdPrefixSmsKB; } - else if (selected.Equals(Common.UITextBeep, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextBeep, StringComparison.OrdinalIgnoreCase)) { BeepCommand beepCommand = new BeepCommand(); if (beepCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixBeep + beepCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixBeep + beepCommand.CommandString; } - else if (selected.Equals(Common.UITextSound, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextSound, StringComparison.OrdinalIgnoreCase)) { OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.Filter = "Wave Files|*.wav"; openFileDialog.Multiselect = false; if (openFileDialog.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixSound + openFileDialog.FileName; + newCommand = IrssUtils.Common.CmdPrefixSound + openFileDialog.FileName; } - else if (selected.Equals(Common.UITextDisplayMode, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextDisplayMode, StringComparison.OrdinalIgnoreCase)) { DisplayModeCommand displayModeCommand = new DisplayModeCommand(); if (displayModeCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixDisplayMode + displayModeCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixDisplayMode + displayModeCommand.CommandString; } - else if (selected.Equals(Common.UITextStandby, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextStandby, StringComparison.OrdinalIgnoreCase)) { - newCommand = Common.CmdPrefixStandby; + newCommand = IrssUtils.Common.CmdPrefixStandby; } - else if (selected.Equals(Common.UITextHibernate, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextHibernate, StringComparison.OrdinalIgnoreCase)) { - newCommand = Common.CmdPrefixHibernate; + newCommand = IrssUtils.Common.CmdPrefixHibernate; } - else if (selected.Equals(Common.UITextReboot, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextReboot, StringComparison.OrdinalIgnoreCase)) { - newCommand = Common.CmdPrefixReboot; + newCommand = IrssUtils.Common.CmdPrefixReboot; } - else if (selected.Equals(Common.UITextShutdown, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextShutdown, StringComparison.OrdinalIgnoreCase)) { - newCommand = Common.CmdPrefixShutdown; + newCommand = IrssUtils.Common.CmdPrefixShutdown; } - else if (selected.StartsWith(Common.CmdPrefixBlast, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixBlast, StringComparison.OrdinalIgnoreCase)) { BlastCommand blastCommand = new BlastCommand( MPBlastZonePlugin.BlastIR, - Common.FolderIRCommands, + IrssUtils.Common.FolderIRCommands, MPBlastZonePlugin.TransceiverInformation.Ports, - selected.Substring(Common.CmdPrefixBlast.Length)); + selected.Substring(IrssUtils.Common.CmdPrefixBlast.Length)); if (blastCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixBlast + blastCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixBlast + blastCommand.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixMacro, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixMacro, StringComparison.OrdinalIgnoreCase)) { newCommand = selected; } @@ -382,7 +382,7 @@ return; } - if (!Common.IsValidFileName(name)) + if (!IrssUtils.Common.IsValidFileName(name)) { MessageBox.Show(this, "You must supply a valid name for this Macro", "Invalid name", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); @@ -392,9 +392,9 @@ try { - WriteToFile(MPBlastZonePlugin.FolderMacros + name + Common.FileExtensionMacro); + WriteToFile(MPBlastZonePlugin.FolderMacros + name + IrssUtils.Common.FileExtensionMacro); - MPBlastZonePlugin.ProcessCommand(Common.CmdPrefixMacro + name, false); + MPBlastZonePlugin.ProcessCommand(IrssUtils.Common.CmdPrefixMacro + name, false); } catch (Exception ex) { @@ -421,7 +421,7 @@ return; } - if (!Common.IsValidFileName(name)) + if (!IrssUtils.Common.IsValidFileName(name)) { MessageBox.Show(this, "You must supply a valid name for this Macro", "Invalid name", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); @@ -431,7 +431,7 @@ try { - WriteToFile(MPBlastZonePlugin.FolderMacros + name + Common.FileExtensionMacro); + WriteToFile(MPBlastZonePlugin.FolderMacros + name + IrssUtils.Common.FileExtensionMacro); } catch (Exception ex) { @@ -453,138 +453,138 @@ string selected = listBoxMacro.SelectedItem as string; string newCommand = null; - if (selected.StartsWith(Common.CmdPrefixRun, StringComparison.OrdinalIgnoreCase)) + if (selected.StartsWith(IrssUtils.Common.CmdPrefixRun, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitRunCommand(selected.Substring(Common.CmdPrefixRun.Length)); + string[] commands = IrssUtils.Common.SplitRunCommand(selected.Substring(IrssUtils.Common.CmdPrefixRun.Length)); ExternalProgram executeProgram = new ExternalProgram(commands); if (executeProgram.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixRun + executeProgram.CommandString; + newCommand = IrssUtils.Common.CmdPrefixRun + executeProgram.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixPause, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixPause, StringComparison.OrdinalIgnoreCase)) { - PauseTime pauseTime = new PauseTime(int.Parse(selected.Substring(Common.CmdPrefixPause.Length))); + PauseTime pauseTime = new PauseTime(int.Parse(selected.Substring(IrssUtils.Common.CmdPrefixPause.Length))); if (pauseTime.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixPause + pauseTime.Time; + newCommand = IrssUtils.Common.CmdPrefixPause + pauseTime.Time; } - else if (selected.StartsWith(Common.CmdPrefixSerial, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixSerial, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitSerialCommand(selected.Substring(Common.CmdPrefixSerial.Length)); + string[] commands = IrssUtils.Common.SplitSerialCommand(selected.Substring(IrssUtils.Common.CmdPrefixSerial.Length)); SerialCommand serialCommand = new SerialCommand(commands); if (serialCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixSerial + serialCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixSerial + serialCommand.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixWindowMsg, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixWindowMsg, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitWindowMessageCommand(selected.Substring(Common.CmdPrefixWindowMsg.Length)); + string[] commands = IrssUtils.Common.SplitWindowMessageCommand(selected.Substring(IrssUtils.Common.CmdPrefixWindowMsg.Length)); MessageCommand messageCommand = new MessageCommand(commands); if (messageCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixWindowMsg + messageCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixWindowMsg + messageCommand.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixTcpMsg, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixTcpMsg, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitTcpMessageCommand(selected.Substring(Common.CmdPrefixTcpMsg.Length)); + string[] commands = IrssUtils.Common.SplitTcpMessageCommand(selected.Substring(IrssUtils.Common.CmdPrefixTcpMsg.Length)); TcpMessageCommand tcpMessageCommand = new TcpMessageCommand(commands); if (tcpMessageCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixTcpMsg + tcpMessageCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixTcpMsg + tcpMessageCommand.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixHttpMsg, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixHttpMsg, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitHttpMessageCommand(selected.Substring(Common.CmdPrefixHttpMsg.Length)); + string[] commands = IrssUtils.Common.SplitHttpMessageCommand(selected.Substring(IrssUtils.Common.CmdPrefixHttpMsg.Length)); HttpMessageCommand httpMessageCommand = new HttpMessageCommand(commands); if (httpMessageCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixHttpMsg + httpMessageCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixHttpMsg + httpMessageCommand.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixKeys, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixKeys, StringComparison.OrdinalIgnoreCase)) { - KeysCommand keysCommand = new KeysCommand(selected.Substring(Common.CmdPrefixKeys.Length)); + KeysCommand keysCommand = new KeysCommand(selected.Substring(IrssUtils.Common.CmdPrefixKeys.Length)); if (keysCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixKeys + keysCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixKeys + keysCommand.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixMouse, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixMouse, StringComparison.OrdinalIgnoreCase)) { - MouseCommand mouseCommand = new MouseCommand(selected.Substring(Common.CmdPrefixMouse.Length)); + MouseCommand mouseCommand = new MouseCommand(selected.Substring(IrssUtils.Common.CmdPrefixMouse.Length)); if (mouseCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixMouse + mouseCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixMouse + mouseCommand.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixEject, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixEject, StringComparison.OrdinalIgnoreCase)) { - EjectCommand ejectCommand = new EjectCommand(selected.Substring(Common.CmdPrefixEject.Length)); + EjectCommand ejectCommand = new EjectCommand(selected.Substring(IrssUtils.Common.CmdPrefixEject.Length)); if (ejectCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixEject + ejectCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixEject + ejectCommand.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixPopup, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixPopup, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitPopupCommand(selected.Substring(Common.CmdPrefixPopup.Length)); + string[] commands = IrssUtils.Common.SplitPopupCommand(selected.Substring(IrssUtils.Common.CmdPrefixPopup.Length)); PopupMessage popupMessage = new PopupMessage(commands); if (popupMessage.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixPopup + popupMessage.CommandString; + newCommand = IrssUtils.Common.CmdPrefixPopup + popupMessage.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixGotoScreen, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixGotoScreen, StringComparison.OrdinalIgnoreCase)) { - GoToScreen goToScreen = new GoToScreen(selected.Substring(Common.CmdPrefixGotoScreen.Length)); + GoToScreen goToScreen = new GoToScreen(selected.Substring(IrssUtils.Common.CmdPrefixGotoScreen.Length)); if (goToScreen.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixGotoScreen + goToScreen.CommandString; + newCommand = IrssUtils.Common.CmdPrefixGotoScreen + goToScreen.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixSendMPAction, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixSendMPAction, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitSendMPActionCommand(selected.Substring(Common.CmdPrefixSendMPAction.Length)); + string[] commands = IrssUtils.Common.SplitSendMPActionCommand(selected.Substring(IrssUtils.Common.CmdPrefixSendMPAction.Length)); MPAction edit = new MPAction(commands); if (edit.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixSendMPAction + edit.CommandString; + newCommand = IrssUtils.Common.CmdPrefixSendMPAction + edit.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixSendMPMsg, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixSendMPMsg, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitSendMPMsgCommand(selected.Substring(Common.CmdPrefixSendMPMsg.Length)); + string[] commands = IrssUtils.Common.SplitSendMPMsgCommand(selected.Substring(IrssUtils.Common.CmdPrefixSendMPMsg.Length)); MPMessage edit = new MPMessage(commands); if (edit.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixSendMPMsg + edit.CommandString; + newCommand = IrssUtils.Common.CmdPrefixSendMPMsg + edit.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixBeep, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixBeep, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitBeepCommand(selected.Substring(Common.CmdPrefixBeep.Length)); + string[] commands = IrssUtils.Common.SplitBeepCommand(selected.Substring(IrssUtils.Common.CmdPrefixBeep.Length)); BeepCommand beepCommand = new BeepCommand(commands); if (beepCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixBeep + beepCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixBeep + beepCommand.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixSound, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixSound, StringComparison.OrdinalIgnoreCase)) { OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.Filter = "Wave Files|*.wav"; openFileDialog.Multiselect = false; - openFileDialog.FileName = selected.Substring(Common.CmdPrefixSound.Length); + openFileDialog.FileName = selected.Substring(IrssUtils.Common.CmdPrefixSound.Length); if (openFileDialog.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixSound + openFileDialog.FileName; + newCommand = IrssUtils.Common.CmdPrefixSound + openFileDialog.FileName; } - else if (selected.StartsWith(Common.CmdPrefixDisplayMode, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixDisplayMode, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitDisplayModeCommand(selected.Substring(Common.CmdPrefixDisplayMode.Length)); + string[] commands = IrssUtils.Common.SplitDisplayModeCommand(selected.Substring(IrssUtils.Common.CmdPrefixDisplayMode.Length)); DisplayModeCommand displayModeCommand = new DisplayModeCommand(commands); if (displayModeCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixDisplayMode + displayModeCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixDisplayMode + displayModeCommand.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixBlast, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixBlast, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitBlastCommand(selected.Substring(Common.CmdPrefixBlast.Length)); + string[] commands = IrssUtils.Common.SplitBlastCommand(selected.Substring(IrssUtils.Common.CmdPrefixBlast.Length)); BlastCommand blastCommand = new BlastCommand( MPBlastZonePlugin.BlastIR, - Common.FolderIRCommands, + IrssUtils.Common.FolderIRCommands, MPBlastZonePlugin.TransceiverInformation.Ports, commands); if (blastCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixBlast + blastCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixBlast + blastCommand.CommandString; } if (!String.IsNullOrEmpty(newCommand)) Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.cs 2011-03-27 19:59:02 UTC (rev 4154) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/Forms/SetupForm.cs 2011-03-28 21:22:08 UTC (rev 4155) @@ -123,7 +123,7 @@ { listViewIR.Items.Clear(); - string[] irList = Common.GetIRList(false); + string[] irList = IrssUtils.Common.GetIRList(false); if (irList != null && irList.Length > 0) foreach (string irFile in irList) listViewIR.Items.Add(irFile); @@ -143,18 +143,18 @@ { comboBoxCommands.Items.Clear(); - comboBoxCommands.Items.Add(Common.UITextRun); - comboBoxCommands.Items.Add(Common.UITextSerial); - comboBoxCommands.Items.Add(Common.UITextWindowMsg); - comboBoxCommands.Items.Add(Common.UITextTcpMsg); - comboBoxCommands.Items.Add(Common.UITextEject); - comboBoxCommands.Items.Add(Common.UITextGotoScreen); - //comboBoxCommands.Items.Add(Common.UITextWindowState); - comboBoxCommands.Items.Add(Common.UITextExit); - comboBoxCommands.Items.Add(Common.UITextStandby); - comboBoxCommands.Items.Add(Common.UITextHibernate); - comboBoxCommands.Items.Add(Common.UITextReboot); - comboBoxCommands.Items.Add(Common.UITextShutdown); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextRun); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextSerial); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextWindowMsg); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextTcpMsg); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextEject); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextGotoScreen); + //comboBoxCommands.Items.Add(IrssUtils.Common.UITextWindowState); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextExit); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextStandby); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextHibernate); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextReboot); + comboBoxCommands.Items.Add(IrssUtils.Common.UITextShutdown); string[] fileList = MPBlastZonePlugin.GetFileList(true); @@ -170,7 +170,7 @@ try { string command = listViewIR.SelectedItems[0].Text; - string fileName = Path.Combine(Common.FolderIRCommands, command + Common.FileExtensionIR); + string fileName = Path.Combine(IrssUtils.Common.FolderIRCommands, command + IrssUtils.Common.FileExtensionIR); if (File.Exists(fileName)) { @@ -207,7 +207,7 @@ try { string command = listViewMacro.SelectedItems[0].Text; - string fileName = MPBlastZonePlugin.FolderMacros + command + Common.FileExtensionMacro; + string fileName = MPBlastZonePlugin.FolderMacros + command + IrssUtils.Common.FileExtensionMacro; if (File.Exists(fileName)) { @@ -345,7 +345,7 @@ return; string file = listViewIR.SelectedItems[0].Text; - string fileName = Path.Combine(Common.FolderIRCommands, file + Common.FileExtensionIR); + string fileName = Path.Combine(IrssUtils.Common.FolderIRCommands, file + IrssUtils.Common.FileExtensionIR); if (File.Exists(fileName)) { if ( @@ -383,7 +383,7 @@ return; string file = listViewMacro.SelectedItems[0].Text; - string fileName = MPBlastZonePlugin.FolderMacros + file + Common.FileExtensionMacro; + string fileName = MPBlastZonePlugin.FolderMacros + file + IrssUtils.Common.FileExtensionMacro; if (File.Exists(fileName)) { if ( @@ -408,7 +408,7 @@ try { - MPBlastZonePlugin.ProcessCommand(Common.CmdPrefixMacro + listViewMacro.SelectedItems[0].Text, false); + MPBlastZonePlugin.ProcessCommand(IrssUtils.Common.CmdPrefixMacro + listViewMacro.SelectedItems[0].Text, false); } catch (Exception ex) { @@ -443,52 +443,52 @@ string selected = comboBoxCommands.SelectedItem as string; string newCommand = null; - if (selected.Equals(Common.UITextRun, StringComparison.OrdinalIgnoreCase)) + if (selected.Equals(IrssUtils.Common.UITextRun, StringComparison.OrdinalIgnoreCase)) { ExternalProgram externalProgram = new ExternalProgram(); if (externalProgram.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixRun + externalProgram.CommandString; + newCommand = IrssUtils.Common.CmdPrefixRun + externalProgram.CommandString; } - else if (selected.Equals(Common.UITextSerial, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextSerial, StringComparison.OrdinalIgnoreCase)) { SerialCommand serialCommand = new SerialCommand(); if (serialCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixSerial + serialCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixSerial + serialCommand.CommandString; } - else if (selected.Equals(Common.UITextWindowMsg, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextWindowMsg, StringComparison.OrdinalIgnoreCase)) { MessageCommand messageCommand = new MessageCommand(); if (messageCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixWindowMsg + messageCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixWindowMsg + messageCommand.CommandString; } - else if (selected.Equals(Common.UITextTcpMsg, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextTcpMsg, StringComparison.OrdinalIgnoreCase)) { TcpMessageCommand tcpMessageCommand = new TcpMessageCommand(); if (tcpMessageCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixTcpMsg + tcpMessageCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixTcpMsg + tcpMessageCommand.CommandString; } - else if (selected.Equals(Common.UITextEject, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextEject, StringComparison.OrdinalIgnoreCase)) { EjectCommand ejectCommand = new EjectCommand(); if (ejectCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixEject + ejectCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixEject + ejectCommand.CommandString; } - else if (selected.Equals(Common.UITextGotoScreen, StringComparison.OrdinalIgnoreCase)) + else if (selected.Equals(IrssUtils.Common.UITextGotoScreen, StringComparison.OrdinalIgnoreCase)) { GoToScreen goToScreen = new GoToScreen(); if (goToScreen.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixGotoScreen + goToScreen.CommandString; + newCommand = IrssUtils.Common.CmdPrefixGotoScreen + goToScreen.CommandString; } - else if (selected.StartsWith(Common.CmdPrefixBlast, StringComparison.OrdinalIgnoreCase)) + else if (selected.StartsWith(IrssUtils.Common.CmdPrefixBlast, StringComparison.OrdinalIgnoreCase)) { BlastCommand blastCommand = new BlastCommand( MPBlastZonePlugin.BlastIR, - Common.FolderIRCommands, + IrssUtils.Common.FolderIRCommands, MPBlastZonePlugin.TransceiverInformation.Ports, - selected.Substring(Common.CmdPrefixBlast.Length)); + selected.Substring(IrssUtils.Common.CmdPrefixBlast.Length)); if (blastCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixBlast + blastCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixBlast + blastCommand.CommandString; } else { @@ -725,7 +725,7 @@ ListViewItem originItem = origin.Items[e.Item]; - string oldFileName = Path.Combine(Common.FolderIRCommands, originItem.Text + Common.FileExtensionIR); + string oldFileName = Path.Combine(IrssUtils.Common.FolderIRCommands, originItem.Text + IrssUtils.Common.FileExtensionIR); if (!File.Exists(oldFileName)) { MessageBox.Show("File not found: " + oldFileName, "Cannot rename, Original file not found", MessageBoxButtons.OK, @@ -736,7 +736,7 @@ string name = e.Label.Trim(); - if (!Common.IsValidFileName(name)) + if (!IrssUtils.Common.IsValidFileName(name)) { MessageBox.Show("File name not valid: " + name, "Cannot rename, New file name not valid", MessageBoxButtons.OK, MessageBoxIcon.Error); @@ -746,7 +746,7 @@ try { - string newFileName = Path.Combine(Common.FolderIRCommands, name + Common.FileExtensionIR); + string newFileName = Path.Combine(IrssUtils.Common.FolderIRCommands, name + IrssUtils.Common.FileExtensionIR); File.Move(oldFileName, newFileName); } @@ -774,7 +774,7 @@ ListViewItem originItem = origin.Items[e.Item]; - string oldFileName = MPBlastZonePlugin.FolderMacros + originItem.Text + Common.FileExtensionMacro; + string oldFileName = MPBlastZonePlugin.FolderMacros + originItem.Text + IrssUtils.Common.FileExtensionMacro; if (!File.Exists(oldFileName)) { MessageBox.Show("File not found: " + oldFileName, "Cannot rename, Original file not found", MessageBoxButtons.OK, @@ -785,7 +785,7 @@ string name = e.Label.Trim(); - if (!Common.IsValidFileName(name)) + if (!IrssUtils.Common.IsValidFileName(name)) { MessageBox.Show("File name not valid: " + name, "Cannot rename, New file name not valid", MessageBoxButtons.OK, MessageBoxIcon.Error); @@ -795,7 +795,7 @@ try { - string newFileName = MPBlastZonePlugin.FolderMacros + name + Common.FileExtensionMacro; + string newFileName = MPBlastZonePlugin.FolderMacros + name + IrssUtils.Common.FileExtensionMacro; File.Move(oldFileName, newFileName); } @@ -817,52 +817,52 @@ string command = treeViewMenu.SelectedNode.Text; string newCommand = null; - if (command.StartsWith(Common.CmdPrefixRun, StringComparison.OrdinalIgnoreCase)) + if (command.StartsWith(IrssUtils.Common.CmdPrefixRun, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitRunCommand(command.Substring(Common.CmdPrefixRun.Length)); + string[] commands = IrssUtils.Common.SplitRunCommand(command.Substring(IrssUtils.Common.CmdPrefixRun.Length)); ExternalProgram externalProgram = new ExternalProgram(commands); if (externalProgram.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixRun + externalProgram.CommandString; + newCommand = IrssUtils.Common.CmdPrefixRun + externalProgram.CommandString; } - else if (command.StartsWith(Common.CmdPrefixGotoScreen, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixGotoScreen, StringComparison.OrdinalIgnoreCase)) { - GoToScreen goToScreen = new GoToScreen(command.Substring(Common.CmdPrefixGotoScreen.Length)); + GoToScreen goToScreen = new GoToScreen(command.Substring(IrssUtils.Common.CmdPrefixGotoScreen.Length)); if (goToScreen.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixGotoScreen + goToScreen.CommandString; + newCommand = IrssUtils.Common.CmdPrefixGotoScreen + goToScreen.CommandString; } - else if (command.StartsWith(Common.CmdPrefixSerial, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixSerial, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitSerialCommand(command.Substring(Common.CmdPrefixSerial.Length)); + string[] commands = IrssUtils.Common.SplitSerialCommand(command.Substring(IrssUtils.Common.CmdPrefixSerial.Length)); SerialCommand serialCommand = new SerialCommand(commands); if (serialCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixSerial + serialCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixSerial + serialCommand.CommandString; } - else if (command.StartsWith(Common.CmdPrefixWindowMsg, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixWindowMsg, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitWindowMessageCommand(command.Substring(Common.CmdPrefixWindowMsg.Length)); + string[] commands = IrssUtils.Common.SplitWindowMessageCommand(command.Substring(IrssUtils.Common.CmdPrefixWindowMsg.Length)); MessageCommand messageCommand = new MessageCommand(commands); if (messageCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixWindowMsg + messageCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixWindowMsg + messageCommand.CommandString; } - else if (command.StartsWith(Common.CmdPrefixTcpMsg, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixTcpMsg, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitTcpMessageCommand(command.Substring(Common.CmdPrefixTcpMsg.Length)); + string[] commands = IrssUtils.Common.SplitTcpMessageCommand(command.Substring(IrssUtils.Common.CmdPrefixTcpMsg.Length)); TcpMessageCommand tcpMessageCommand = new TcpMessageCommand(commands); if (tcpMessageCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixTcpMsg + tcpMessageCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixTcpMsg + tcpMessageCommand.CommandString; } - else if (command.StartsWith(Common.CmdPrefixBlast, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixBlast, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitBlastCommand(command.Substring(Common.CmdPrefixBlast.Length)); + string[] commands = IrssUtils.Common.SplitBlastCommand(command.Substring(IrssUtils.Common.CmdPrefixBlast.Length)); BlastCommand blastCommand = new BlastCommand( MPBlastZonePlugin.BlastIR, - Common.FolderIRCommands, + IrssUtils.Common.FolderIRCommands, MPBlastZonePlugin.TransceiverInformation.Ports, commands); if (blastCommand.ShowDialog(this) == DialogResult.OK) - newCommand = Common.CmdPrefixBlast + blastCommand.CommandString; + newCommand = IrssUtils.Common.CmdPrefixBlast + blastCommand.CommandString; } if (!String.IsNullOrEmpty(newCommand)) Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2011-03-27 19:59:02 UTC (rev 4154) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MP Blast Zone Plugin.csproj 2011-03-28 21:22:08 UTC (rev 4155) @@ -102,6 +102,10 @@ </PostBuildEvent> </PropertyGroup> <ItemGroup> + <ProjectReference Include="..\..\..\..\..\..\..\MediaPortal\trunk\Common-MP-TVE3\Common.Utils\Common.Utils.csproj"> + <Project>{F6EDA1F3-3DCD-43F4-8A90-E32DA70C8227}</Project> + <Name>Common.Utils</Name> + </ProjectReference> <ProjectReference Include="..\..\..\..\..\..\..\mediaportal\trunk\mediaportal\Core\Core.csproj"> <Project>{02FFFC1F-2555-4B99-8B01-3432D0673855}</Project> <Name>Core</Name> Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs 2011-03-27 19:59:02 UTC (rev 4154) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Blast Zone Plugin/MPBlastZonePlugin.cs 2011-03-28 21:22:08 UTC (rev 4155) @@ -69,8 +69,8 @@ private const string ProcessCommandThreadName = "ProcessCommand"; private const int WindowID = 248101; - internal static readonly string FolderMacros = Path.Combine(Common.FolderAppData, "MP Blast Zone Plugin\\Macro"); - internal static readonly string MenuFile = Path.Combine(Common.FolderAppData, "MP Blast Zone Plugin\\Menu.xml"); + internal static readonly string FolderMacros = Path.Combine(IrssUtils.Common.FolderAppData, "MP Blast Zone Plugin\\Macro"); + internal static readonly string MenuFile = Path.Combine(IrssUtils.Common.FolderAppData, "MP Blast Zone Plugin\\Menu.xml"); #endregion Constants @@ -691,148 +691,148 @@ if (String.IsNullOrEmpty(command)) throw new ArgumentException("commandObj translates to empty or null string", "commandObj"); - if (command.StartsWith(Common.CmdPrefixMacro, StringComparison.OrdinalIgnoreCase)) + if (command.StartsWith(IrssUtils.Common.CmdPrefixMacro, StringComparison.OrdinalIgnoreCase)) { string fileName = Path.Combine(FolderMacros, - command.Substring(Common.CmdPrefixMacro.Length) + Common.FileExtensionMacro); + command.Substring(IrssUtils.Common.CmdPrefixMacro.Length) + IrssUtils.Common.FileExtensionMacro); ProcMacro(fileName); } - else if (command.StartsWith(Common.CmdPrefixBlast, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixBlast, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitBlastCommand(command.Substring(Common.CmdPrefixBlast.Length)); - BlastIR(Path.Combine(Common.FolderIRCommands, commands[0] + Common.FileExtensionIR), commands[1]); + string[] commands = IrssUtils.Common.SplitBlastCommand(command.Substring(IrssUtils.Common.CmdPrefixBlast.Length)); + BlastIR(Path.Combine(IrssUtils.Common.FolderIRCommands, commands[0] + IrssUtils.Common.FileExtensionIR), commands[1]); } - else if (command.StartsWith(Common.CmdPrefixSTB, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixSTB, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitBlastCommand(command.Substring(Common.CmdPrefixSTB.Length)); - BlastIR(Path.Combine(Common.FolderSTB, commands[0] + Common.FileExtensionIR), commands[1]); + string[] commands = IrssUtils.Common.SplitBlastCommand(command.Substring(IrssUtils.Common.CmdPrefixSTB.Length)); + BlastIR(Path.Combine(IrssUtils.Common.FolderSTB, commands[0] + IrssUtils.Common.FileExtensionIR), commands[1]); } - else if (command.StartsWith(Common.CmdPrefixPause, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixPause, StringComparison.OrdinalIgnoreCase)) { - int pauseTime = int.Parse(command.Substring(Common.CmdPrefixPause.Length)); + int pauseTime = int.Parse(command.Substring(IrssUtils.Common.CmdPrefixPause.Length)); Thread.Sleep(pauseTime); } - else if (command.StartsWith(Common.CmdPrefixRun, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixRun, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitRunCommand(command.Substring(Common.CmdPrefixRun.Length)); - Common.ProcessRunCommand(commands); + string[] commands = IrssUtils.Common.SplitRunCommand(command.Substring(IrssUtils.Common.CmdPrefixRun.Length)); + IrssUtils.Common.ProcessRunCommand(commands); } - else if (command.StartsWith(Common.CmdPrefixSerial, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixSerial, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitSerialCommand(command.Substring(Common.CmdPrefixSerial.Length)); - Common.ProcessSerialCommand(commands); + string[] commands = IrssUtils.Common.SplitSerialCommand(command.Substring(IrssUtils.Common.CmdPrefixSerial.Length)); + IrssUtils.Common.ProcessSerialCommand(commands); } - else if (command.StartsWith(Common.CmdPrefixWindowMsg, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixWindowMsg, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitWindowMessageCommand(command.Substring(Common.CmdPrefixWindowMsg.Length)); - Common.ProcessWindowMessageCommand(commands); + string[] commands = IrssUtils.Common.SplitWindowMessageCommand(command.Substring(IrssUtils.Common.CmdPrefixWindowMsg.Length)); + IrssUtils.Common.ProcessWindowMessageCommand(commands); } - else if (command.StartsWith(Common.CmdPrefixTcpMsg, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixTcpMsg, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitTcpMessageCommand(command.Substring(Common.CmdPrefixTcpMsg.Length)); - Common.ProcessTcpMessageCommand(commands); + string[] commands = IrssUtils.Common.SplitTcpMessageCommand(command.Substring(IrssUtils.Common.CmdPrefixTcpMsg.Length)); + IrssUtils.Common.ProcessTcpMessageCommand(commands); } - else if (command.StartsWith(Common.CmdPrefixHttpMsg, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixHttpMsg, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitHttpMessageCommand(command.Substring(Common.CmdPrefixHttpMsg.Length)); - Common.ProcessHttpCommand(commands); + string[] commands = IrssUtils.Common.SplitHttpMessageCommand(command.Substring(IrssUtils.Common.CmdPrefixHttpMsg.Length)); + IrssUtils.Common.ProcessHttpCommand(commands); } - else if (command.StartsWith(Common.CmdPrefixKeys, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixKeys, StringComparison.OrdinalIgnoreCase)) { - string keyCommand = command.Substring(Common.CmdPrefixKeys.Length); + string keyCommand = command.Substring(IrssUtils.Common.CmdPrefixKeys.Length); if (_inConfiguration) - MessageBox.Show(keyCommand, Common.UITextKeys, MessageBoxButtons.OK, MessageBoxIcon.Information); + MessageBox.Show(keyCommand, IrssUtils.Common.UITextKeys, MessageBoxButtons.OK, MessageBoxIcon.Information); else - Common.ProcessKeyCommand(keyCommand); + IrssUtils.Common.ProcessKeyCommand(keyCommand); } - else if (command.StartsWith(Common.CmdPrefixMouse, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixMouse, StringComparison.OrdinalIgnoreCase)) { - string mouseCommand = command.Substring(Common.CmdPrefixMouse.Length); - Common.ProcessMouseCommand(mouseCommand); + string mouseCommand = command.Substring(IrssUtils.Common.CmdPrefixMouse.Length); + IrssUtils.Common.ProcessMouseCommand(mouseCommand); } - else if (command.StartsWith(Common.CmdPrefixEject, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixEject, StringComparison.OrdinalIgnoreCase)) { - string ejectCommand = command.Substring(Common.CmdPrefixEject.Length); - Common.ProcessEjectCommand(ejectCommand); + string ejectCommand = command.Substring(IrssUtils.Common.CmdPrefixEject.Length); + IrssUtils.Common.ProcessEjectCommand(ejectCommand); } - else if (command.StartsWith(Common.CmdPrefixPopup, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixPopup, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitPopupCommand(command.Substring(Common.CmdPrefixPopup.Length)); + string[] commands = IrssUtils.Common.SplitPopupCommand(command.Substring(IrssUtils.Common.CmdPrefixPopup.Length)); if (_inConfiguration) MessageBox.Show(commands[1], commands[0], MessageBoxButtons.OK, MessageBoxIcon.Information); else MPCommon.ShowNotifyDialog(commands[0], commands[1], int.Parse(commands[2])); } - else if (command.StartsWith(Common.CmdPrefixGotoScreen, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixGotoScreen, StringComparison.OrdinalIgnoreCase)) { - string screenID = command.Substring(Common.CmdPrefixGotoScreen.Length); + string screenID = command.Substring(IrssUtils.Common.CmdPrefixGotoScreen.Length); if (_inConfiguration) - MessageBox.Show(screenID, Common.UITextGotoScreen, MessageBoxButtons.OK, MessageBoxIcon.Information); + MessageBox.Show(screenID, IrssUtils.Common.UITextGotoScreen, MessageBoxButtons.OK, MessageBoxIcon.Information); else MPCommon.ProcessGoTo(screenID, _mpBasicHome); } - else if (command.StartsWith(Common.CmdPrefixSendMPAction, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixSendMPAction, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitSendMPActionCommand(command.Substring(Common.CmdPrefixSendMPAction.Length)); + string[] commands = IrssUtils.Common.SplitSendMPActionCommand(command.Substring(IrssUtils.Common.CmdPrefixSendMPAction.Length)); if (_inConfiguration) - MessageBox.Show(commands[0], Common.UITextSendMPAction, MessageBoxButtons.OK, MessageBoxIcon.Information); + MessageBox.Show(commands[0], IrssUtils.Common.UITextSendMPAction, MessageBoxButtons.OK, MessageBoxIcon.Information); else MPCommon.ProcessSendMediaPortalAction(commands); } - else if (command.StartsWith(Common.CmdPrefixSendMPMsg, StringComparison.OrdinalIgnoreCase)) + else if (command.StartsWith(IrssUtils.Common.CmdPrefixSendMPMsg, StringComparison.OrdinalIgnoreCase)) { - string[] commands = Common.SplitSendMPMsgCommand(command.Substring(Common.CmdPrefixSendMPMsg.Length)); + string[] commands = IrssUtils.Common.SplitSendMPMsgCommand(command.Substring(IrssUtils.Common.CmdPrefixSendMPMsg.Length)); if (_inConfiguration) - MessageBox.Show(commands[0], Common.UITextSendMPMsg, MessageBoxButtons.OK, MessageBoxIcon.Information); + MessageBox.Show(commands[0], IrssUtils.Common.UITextSendMPMsg, MessageBoxButtons... [truncated message content] |