From: <che...@us...> - 2009-07-11 17:24:14
|
Revision: 3005 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3005&view=rev Author: chemelli_sf Date: 2009-07-11 17:24:10 +0000 (Sat, 11 Jul 2009) Log Message: ----------- - Fixed a wrong return code for X10 detection - Added some debug log lines to help understand when detection fails Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2009-07-11 16:41:50 UTC (rev 3004) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2009-07-11 17:24:10 UTC (rev 3005) @@ -228,6 +228,7 @@ IrssLog.Error("{0} exception: {1}", Name, ex.NativeErrorCode); return DetectionResult.DeviceException; } + IrssLog.Debug("{0} exception: {1}", Name, ex.NativeErrorCode); } catch (Exception ex) { Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2009-07-11 16:41:50 UTC (rev 3004) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2009-07-11 17:24:10 UTC (rev 3005) @@ -329,6 +329,7 @@ IrssLog.Error("{0} exception: {1}", Name, ex.NativeErrorCode); return DetectionResult.DeviceException; } + IrssLog.Debug("{0} exception: {1}", Name, ex.NativeErrorCode); } catch (Exception ex) { Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2009-07-11 16:41:50 UTC (rev 3004) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2009-07-11 17:24:10 UTC (rev 3005) @@ -193,14 +193,17 @@ if (ex.ErrorCode != -2147221164) { IrssLog.Warn("{0} exception: {1}", Name, ex.ErrorCode); + return DetectionResult.DeviceException; } - return DetectionResult.DeviceNotFound; + IrssLog.Debug("{0} exception: {1}", Name, ex.ErrorCode); } catch (Exception ex) { IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } + + return DetectionResult.DeviceNotFound; } /// <summary> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs 2009-07-11 16:41:50 UTC (rev 3004) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs 2009-07-11 17:24:10 UTC (rev 3005) @@ -366,6 +366,7 @@ IrssLog.Error("{0} exception: {1}", Name, ex.NativeErrorCode); return DetectionResult.DeviceException; } + IrssLog.Debug("{0} exception: {1}", Name, ex.NativeErrorCode); } catch (Exception ex) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-10-02 09:34:44
|
Revision: 3100 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3100&view=rev Author: chemelli_sf Date: 2009-10-02 09:34:29 +0000 (Fri, 02 Oct 2009) Log Message: ----------- Changed logged exceptions alignment for better readability Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -143,7 +143,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -252,7 +252,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -131,7 +131,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -308,7 +308,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -272,7 +272,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -225,14 +225,14 @@ { if (ex.NativeErrorCode != 2) { - IrssLog.Error("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Error("{0,15} exception: {1}", Name, ex.NativeErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Debug("{0,15} exception: {1}", Name, ex.NativeErrorCode); } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -325,7 +325,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -248,7 +248,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -326,14 +326,14 @@ { if (ex.NativeErrorCode != 13) { - IrssLog.Error("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Error("{0,15} exception: {1}", Name, ex.NativeErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Debug("{0,15} exception: {1}", Name, ex.NativeErrorCode); } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -358,7 +358,7 @@ } catch(Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -271,7 +271,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -339,7 +339,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -418,7 +418,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -204,7 +204,7 @@ } catch (Exception ex) { - IrssLog.Error("{0} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -192,14 +192,14 @@ { if (ex.ErrorCode != -2147221164) { - IrssLog.Warn("{0} exception: {1}", Name, ex.ErrorCode); + IrssLog.Warn("{0,15} exception: {1}", Name, ex.ErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0} exception: {1}", Name, ex.ErrorCode); + IrssLog.Debug("{0,15} exception: {1}", Name, ex.ErrorCode); } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs 2009-09-30 17:52:12 UTC (rev 3099) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs 2009-10-02 09:34:29 UTC (rev 3100) @@ -363,14 +363,14 @@ { if (ex.NativeErrorCode != 13) { - IrssLog.Error("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Error("{0,15} exception: {1}", Name, ex.NativeErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Debug("{0,15} exception: {1}", Name, ex.NativeErrorCode); } catch (Exception ex) { - IrssLog.Error("{0} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-10-06 09:56:24
|
Revision: 3108 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3108&view=rev Author: chemelli_sf Date: 2009-10-06 09:56:16 +0000 (Tue, 06 Oct 2009) Log Message: ----------- - Small code cleanup - MacMini: Changed buffer from 5 to 255 - IR501: Added structure proper sizing for x64 Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2009-10-06 09:35:34 UTC (rev 3107) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2009-10-06 09:56:16 UTC (rev 3108) @@ -34,14 +34,13 @@ /// <summary> /// IR Server Plugin for the IR501 IR receiver. /// </summary> - [CLSCompliant(false)] public class IR501Receiver : PluginBase, IRemoteReceiver { #region Constants private const int DeviceBufferSize = 255; - private const string DeviceID = "vid_147a&pid_e001"; + private const string DevicePathVidPid = "vid_147a&pid_e001"; #endregion Constants @@ -207,13 +206,16 @@ } } + /// <summary> + /// Finds the device. + /// </summary> + /// <param name="classGuid">The class GUID.</param> + /// <returns>Device path.</returns> private static string FindDevice(Guid classGuid) { - int lastError; - // 0x12 = DIGCF_PRESENT | DIGCF_DEVICEINTERFACE IntPtr handle = Win32.SetupDiGetClassDevs(ref classGuid, 0, IntPtr.Zero, 0x12); - lastError = Marshal.GetLastWin32Error(); + int lastError = Marshal.GetLastWin32Error(); if (handle.ToInt32() == -1) throw new Win32Exception(lastError); @@ -232,7 +234,7 @@ if (lastError != 0x0103 && lastError != 0x007E) { Win32.SetupDiDestroyDeviceInfoList(handle); - throw new Win32Exception(Marshal.GetLastWin32Error()); + throw new Win32Exception(lastError); } Win32.SetupDiDestroyDeviceInfoList(handle); @@ -256,8 +258,10 @@ throw new Win32Exception(Marshal.GetLastWin32Error()); } - Win32.DeviceInterfaceDetailData deviceInterfaceDetailData = new Win32.DeviceInterfaceDetailData(); - deviceInterfaceDetailData.Size = 5; + Win32.DeviceInterfaceDetailData deviceInterfaceDetailData = new Win32.DeviceInterfaceDetailData + { + Size = Win32.Check64Bit() ? 8 : 5 + }; if (!Win32.SetupDiGetDeviceInterfaceDetail(handle, ref deviceInterfaceData, ref deviceInterfaceDetailData, cbData, IntPtr.Zero, IntPtr.Zero)) @@ -266,7 +270,7 @@ throw new Win32Exception(Marshal.GetLastWin32Error()); } - if (deviceInterfaceDetailData.DevicePath.IndexOf(DeviceID, StringComparison.InvariantCultureIgnoreCase) != -1) + if (deviceInterfaceDetailData.DevicePath.IndexOf(DevicePathVidPid, StringComparison.InvariantCultureIgnoreCase) != -1) { Win32.SetupDiDestroyDeviceInfoList(handle); devicePath = deviceInterfaceDetailData.DevicePath; @@ -277,6 +281,10 @@ return devicePath; } + /// <summary> + /// Called when a device read is completed. + /// </summary> + /// <param name="asyncResult">The async result.</param> private void OnReadComplete(IAsyncResult asyncResult) { try Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2009-10-06 09:35:34 UTC (rev 3107) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2009-10-06 09:56:16 UTC (rev 3108) @@ -34,11 +34,11 @@ /// <summary> /// IR Server Plugin for the IR receiver built into the Mac Mini. /// </summary> - public class MacMiniReceiver : PluginBase, IRemoteReceiver, IDisposable + public class MacMiniReceiver : PluginBase, IRemoteReceiver { #region Constants - private const int DeviceBufferSize = 5; + private const int DeviceBufferSize = 255; //New device path verified by "yvos" and "James" private const string DevicePathVidPid = "vid_05ac&pid_8242"; @@ -53,7 +53,6 @@ private byte[] _deviceBuffer; private FileStream _deviceStream; - private bool _disposed; private string _lastCode = String.Empty; private DateTime _lastCodeTime = DateTime.Now; @@ -61,57 +60,6 @@ #endregion Variables - #region Destructor - - /// <summary> - /// Releases unmanaged resources and performs other cleanup operations before the - /// <see cref="MacMiniReceiver"/> is reclaimed by garbage collection. - /// </summary> - ~MacMiniReceiver() - { - // Call Dispose with false. Since we're in the destructor call, the managed resources will be disposed of anyway. - Dispose(false); - } - - #endregion Destructor - - #region IDisposable Members - - /// <summary> - /// Releases unmanaged and - optionally - managed resources - /// </summary> - public void Dispose() - { - // Dispose of the managed and unmanaged resources - Dispose(true); - - // Tell the GC that the Finalize process no longer needs to be run for this object. - GC.SuppressFinalize(this); - } - - #endregion - - /// <summary> - /// Releases unmanaged and - optionally - managed resources - /// </summary> - /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param> - protected virtual void Dispose(bool disposing) - { - // process only if mananged and unmanaged resources have - // not been disposed of. - if (!_disposed) - { - if (disposing) - { - // dispose managed resources - Stop(); - } - - // dispose unmanaged resources - _disposed = true; - } - } - #region Implementation /// <summary> @@ -216,18 +164,16 @@ if (String.IsNullOrEmpty(devicePath)) throw new InvalidOperationException("Device not found"); - SafeFileHandle deviceHandle = Win32.CreateFile(devicePath, FileAccess.Read, FileShare.ReadWrite, IntPtr.Zero, - FileMode.Open, Win32.EFileAttributes.Overlapped, IntPtr.Zero); + SafeFileHandle deviceHandle = Win32.CreateFile(devicePath, FileAccess.Read, FileShare.Read, IntPtr.Zero, FileMode.Open, + Win32.EFileAttributes.Overlapped, IntPtr.Zero); int lastError = Marshal.GetLastWin32Error(); if (deviceHandle.IsInvalid) throw new Win32Exception(lastError, "Failed to open device"); - // TODO: Add device removal notification. //_deviceWatcher.RegisterDeviceRemoval(deviceHandle); _deviceBuffer = new byte[DeviceBufferSize]; - _deviceStream = new FileStream(deviceHandle, FileAccess.Read, _deviceBuffer.Length, true); _deviceStream.BeginRead(_deviceBuffer, 0, _deviceBuffer.Length, OnReadComplete, null); } @@ -316,8 +262,7 @@ uint cbData = 0; - if (!Win32.SetupDiGetDeviceInterfaceDetail(handle, ref deviceInterfaceData, IntPtr.Zero, 0, ref cbData, IntPtr.Zero) && - cbData == 0) + if (!Win32.SetupDiGetDeviceInterfaceDetail(handle, ref deviceInterfaceData, IntPtr.Zero, 0, ref cbData, IntPtr.Zero) && cbData == 0) { Win32.SetupDiDestroyDeviceInfoList(handle); throw new Win32Exception(Marshal.GetLastWin32Error()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-10-06 10:45:09
|
Revision: 3109 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3109&view=rev Author: chemelli_sf Date: 2009-10-06 10:44:59 +0000 (Tue, 06 Oct 2009) Log Message: ----------- Moved from old "StringComparison.InvariantCulture" to "StringComparison.Ordinal" Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2009-10-06 09:56:16 UTC (rev 3108) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2009-10-06 10:44:59 UTC (rev 3109) @@ -270,7 +270,7 @@ throw new Win32Exception(Marshal.GetLastWin32Error()); } - if (deviceInterfaceDetailData.DevicePath.IndexOf(DevicePathVidPid, StringComparison.InvariantCultureIgnoreCase) != -1) + if (deviceInterfaceDetailData.DevicePath.IndexOf(DevicePathVidPid, StringComparison.OrdinalIgnoreCase) != -1) { Win32.SetupDiDestroyDeviceInfoList(handle); devicePath = deviceInterfaceDetailData.DevicePath; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2009-10-06 09:56:16 UTC (rev 3108) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2009-10-06 10:44:59 UTC (rev 3109) @@ -312,7 +312,7 @@ throw new Win32Exception(Marshal.GetLastWin32Error()); } - if (deviceInterfaceDetailData.DevicePath.IndexOf(DeviceID, StringComparison.InvariantCultureIgnoreCase) != -1) + if (deviceInterfaceDetailData.DevicePath.IndexOf(DeviceID, StringComparison.OrdinalIgnoreCase) != -1) { Win32.SetupDiDestroyDeviceInfoList(handle); devicePath = deviceInterfaceDetailData.DevicePath; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs 2009-10-06 09:56:16 UTC (rev 3108) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs 2009-10-06 10:44:59 UTC (rev 3109) @@ -278,7 +278,7 @@ throw new Win32Exception(Marshal.GetLastWin32Error()); } - if (deviceInterfaceDetailData.DevicePath.IndexOf(DeviceID, StringComparison.InvariantCultureIgnoreCase) != -1) + if (deviceInterfaceDetailData.DevicePath.IndexOf(DeviceID, StringComparison.OrdinalIgnoreCase) != -1) { Win32.SetupDiDestroyDeviceInfoList(handle); devicePath = deviceInterfaceDetailData.DevicePath; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2009-10-11 15:51:58
|
Revision: 3120 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3120&view=rev Author: chemelli_sf Date: 2009-10-11 15:51:50 +0000 (Sun, 11 Oct 2009) Log Message: ----------- Minor logging changes Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/AdsTechPTV335Receiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -143,7 +143,7 @@ } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15}: exception {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -239,7 +239,7 @@ { if (Environment.UserInteractive) { - IrssLog.Error("{0,15}: not available on \"service\" installation mode", Name); + IrssLog.Warn("{0,15}: not available on \"service\" installation mode", Name); return DetectionResult.DeviceDisabled; } return DetectionResult.DevicePresent; @@ -338,7 +338,7 @@ XmlTextWriter writer = new XmlTextWriter(ConfigurationFile, Encoding.UTF8); writer.Formatting = Formatting.Indented; writer.Indentation = 1; - writer.IndentChar = (char) 9; + writer.IndentChar = (char)9; writer.WriteStartDocument(true); writer.WriteStartElement("settings"); // <settings> @@ -376,7 +376,7 @@ private bool RegisterForRawInput(RawInput.RAWINPUTDEVICE[] devices) { - return RawInput.RegisterRawInputDevices(devices, (uint) devices.Length, (uint) Marshal.SizeOf(devices[0])); + return RawInput.RegisterRawInputDevices(devices, (uint)devices.Length, (uint)Marshal.SizeOf(devices[0])); } private void ProcMessage(ref Message m) @@ -433,9 +433,9 @@ uint dwSize = 0; RawInput.GetRawInputData(message.LParam, RawInput.RawInputCommand.Input, IntPtr.Zero, ref dwSize, - (uint) Marshal.SizeOf(typeof (RawInput.RAWINPUTHEADER))); + (uint)Marshal.SizeOf(typeof(RawInput.RAWINPUTHEADER))); - IntPtr buffer = Marshal.AllocHGlobal((int) dwSize); + IntPtr buffer = Marshal.AllocHGlobal((int)dwSize); try { if (buffer == IntPtr.Zero) @@ -443,16 +443,16 @@ if ( RawInput.GetRawInputData(message.LParam, RawInput.RawInputCommand.Input, buffer, ref dwSize, - (uint) Marshal.SizeOf(typeof (RawInput.RAWINPUTHEADER))) != dwSize) + (uint)Marshal.SizeOf(typeof(RawInput.RAWINPUTHEADER))) != dwSize) return; - RawInput.RAWINPUT raw = (RawInput.RAWINPUT) Marshal.PtrToStructure(buffer, typeof (RawInput.RAWINPUT)); + RawInput.RAWINPUT raw = (RawInput.RAWINPUT)Marshal.PtrToStructure(buffer, typeof(RawInput.RAWINPUT)); switch (raw.header.dwType) { case RawInput.RawInputType.HID: { - int offset = Marshal.SizeOf(typeof (RawInput.RAWINPUTHEADER)) + Marshal.SizeOf(typeof (RawInput.RAWHID)); + int offset = Marshal.SizeOf(typeof(RawInput.RAWINPUTHEADER)) + Marshal.SizeOf(typeof(RawInput.RAWHID)); byte[] bRawData = new byte[offset + raw.hid.dwSizeHid]; Marshal.Copy(buffer, bRawData, 0, bRawData.Length); @@ -492,7 +492,7 @@ Trace.WriteLine(String.Format("Last Y: {0}", raw.mouse.lLastY)); #endif if (_mouseHandler != null) - _mouseHandler(Name, raw.mouse.lLastX, raw.mouse.lLastY, (int) raw.mouse.ulButtons); + _mouseHandler(Name, raw.mouse.lLastX, raw.mouse.lLastY, (int)raw.mouse.ulButtons); break; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -252,7 +252,7 @@ } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15}: exception {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -131,7 +131,7 @@ } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15}: exception {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -134,7 +134,7 @@ } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15}: exception {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -135,7 +135,7 @@ } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15}: exception {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -135,7 +135,7 @@ } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15}: exception {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -325,7 +325,7 @@ } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15}: exception {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -248,7 +248,7 @@ } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15}: exception {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -138,14 +138,14 @@ { if (ex.NativeErrorCode != 13) { - IrssLog.Error("{0,15} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Error("{0,15}: exception {1}", Name, ex.NativeErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0,15} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Debug("{0,15}: exception {1}", Name, ex.NativeErrorCode); } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15}: exception {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/MicrosoftMceTransceiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -358,7 +358,7 @@ } catch(Exception ex) { - IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15}: exception {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102Receiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -137,14 +137,14 @@ { if (ex.NativeErrorCode != 13) { - IrssLog.Error("{0,15} exception: {1}|{2}", Name, ex.NativeErrorCode, ex.Message); + IrssLog.Error("{0,15}: exception {1}|{2}", Name, ex.NativeErrorCode, ex.Message); return DetectionResult.DeviceException; } - IrssLog.Debug("{0,15} exception: {1} | {2} | {3}", Name, ex.NativeErrorCode, ex.Message, ex.GetType()); + IrssLog.Debug("{0,15}: exception {1} | {2} | {3}", Name, ex.NativeErrorCode, ex.Message, ex.GetType()); } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15}: exception {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -339,7 +339,7 @@ } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15}: exception {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -418,7 +418,7 @@ } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15}: exception {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -204,7 +204,7 @@ } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1}", Name, ex.Message); + IrssLog.Error("{0,15}: exception {1}", Name, ex.Message); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -192,14 +192,14 @@ { if (ex.ErrorCode != -2147221164) { - IrssLog.Warn("{0,15} exception: {1}", Name, ex.ErrorCode); + IrssLog.Warn("{0,15}: exception {1}", Name, ex.ErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0,15} exception: {1}", Name, ex.ErrorCode); + IrssLog.Debug("{0,15}: exception {1}", Name, ex.ErrorCode); } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15}: exception {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs 2009-10-11 15:31:37 UTC (rev 3119) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs 2009-10-11 15:51:50 UTC (rev 3120) @@ -226,14 +226,14 @@ { if (ex.NativeErrorCode != 13) { - IrssLog.Error("{0,15} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Error("{0,15}: exception {1}", Name, ex.NativeErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0,15} exception: {1}", Name, ex.NativeErrorCode); + IrssLog.Debug("{0,15}: exception {1}", Name, ex.NativeErrorCode); } catch (Exception ex) { - IrssLog.Error("{0,15} exception: {1} type: {2}", Name, ex.Message, ex.GetType()); + IrssLog.Error("{0,15}: exception {1} type: {2}", Name, ex.Message, ex.GetType()); return DetectionResult.DeviceException; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-01-10 18:40:29
|
Revision: 3344 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3344&view=rev Author: chemelli_sf Date: 2010-01-10 18:40:19 +0000 (Sun, 10 Jan 2010) Log Message: ----------- Small changes to make easier compare IR501 and IR507 implementations Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2010-01-10 18:19:20 UTC (rev 3343) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2010-01-10 18:40:19 UTC (rev 3344) @@ -38,8 +38,6 @@ { #region Constants - private const int DeviceBufferSize = 255; - private const string DevicePathVidPid = "vid_147a&pid_e001"; #endregion Constants @@ -163,7 +161,7 @@ //_deviceWatcher.RegisterDeviceRemoval(deviceHandle); - _deviceBuffer = new byte[DeviceBufferSize]; + _deviceBuffer = new byte[255]; _deviceStream = new FileStream(deviceHandle, FileAccess.Read, _deviceBuffer.Length, true); _deviceStream.BeginRead(_deviceBuffer, 0, _deviceBuffer.Length, OnReadComplete, null); } Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2010-01-10 18:19:20 UTC (rev 3343) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2010-01-10 18:40:19 UTC (rev 3344) @@ -34,13 +34,11 @@ /// <summary> /// IR Server Plugin for the IR507 IR receiver. /// </summary> - [CLSCompliant(false)] public class IR507Receiver : PluginBase, IRemoteReceiver { #region Constants - //const string DeviceID = "vid_0e6a&pid_6002"; // Unknown - private const string DeviceID = "vid_147a&pid_e02a"; + private const string DevicePathVidPid = "vid_147a&pid_e02a"; #endregion Constants @@ -255,6 +253,11 @@ } } + /// <summary> + /// Finds the device. + /// </summary> + /// <param name="classGuid">The class GUID.</param> + /// <returns>Device path.</returns> private static string FindDevice(Guid classGuid) { // 0x12 = DIGCF_PRESENT | DIGCF_DEVICEINTERFACE @@ -278,7 +281,7 @@ if (lastError != 0x0103 && lastError != 0x007E) { Win32.SetupDiDestroyDeviceInfoList(handle); - throw new Win32Exception(Marshal.GetLastWin32Error()); + throw new Win32Exception(lastError); } Win32.SetupDiDestroyDeviceInfoList(handle); @@ -302,8 +305,10 @@ throw new Win32Exception(Marshal.GetLastWin32Error()); } - Win32.DeviceInterfaceDetailData deviceInterfaceDetailData = new Win32.DeviceInterfaceDetailData(); - deviceInterfaceDetailData.Size = 5; + Win32.DeviceInterfaceDetailData deviceInterfaceDetailData = new Win32.DeviceInterfaceDetailData + { + Size = Win32.Check64Bit() ? 8 : 5 + }; if (!Win32.SetupDiGetDeviceInterfaceDetail(handle, ref deviceInterfaceData, ref deviceInterfaceDetailData, cbData, IntPtr.Zero, IntPtr.Zero)) @@ -312,7 +317,7 @@ throw new Win32Exception(Marshal.GetLastWin32Error()); } - if (deviceInterfaceDetailData.DevicePath.IndexOf(DeviceID, StringComparison.OrdinalIgnoreCase) != -1) + if (deviceInterfaceDetailData.DevicePath.IndexOf(DevicePathVidPid, StringComparison.OrdinalIgnoreCase) != -1) { Win32.SetupDiDestroyDeviceInfoList(handle); devicePath = deviceInterfaceDetailData.DevicePath; @@ -324,35 +329,5 @@ } #endregion Implementation - - // #define TEST_APPLICATION in the project properties when creating the console test app ... -#if TEST_APPLICATION - - static void xRemote(string deviceName, string code) - { - Console.WriteLine("Remote: {0}", code); - } - - [STAThread] - static void Main() - { - try - { - IR507Receiver device = new IR507Receiver(); - - device.RemoteCallback += new RemoteHandler(xRemote); - device.Start(); - - Application.Run(); - - device.Stop(); - } - catch (Exception ex) - { - Console.WriteLine(ex.ToString()); - } - } - -#endif } } \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-06-28 22:52:46
|
Revision: 3655 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3655&view=rev Author: chemelli_sf Date: 2010-06-28 22:52:40 +0000 (Mon, 28 Jun 2010) Log Message: ----------- Fixed detection logs for some plugins Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTV interfaces/FireSATControl.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HcwReceiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTV interfaces/FireSATControl.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTV interfaces/FireSATControl.cs 2010-06-28 22:27:10 UTC (rev 3654) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTV interfaces/FireSATControl.cs 2010-06-28 22:52:40 UTC (rev 3655) @@ -87,6 +87,13 @@ throw new FileNotFoundException("FireDTV: Trying to enable FireDTV remote but failed"); } } + else + { + if (!File.Exists(@".\FireSATApi.dll")) + { + throw new FileNotFoundException("Could not find FireSATApi.dll in current path (32bit version needed)"); + } + } _windowHandle = windowHandle; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HcwReceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HcwReceiver.cs 2010-06-28 22:27:10 UTC (rev 3654) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HcwReceiver.cs 2010-06-28 22:52:40 UTC (rev 3655) @@ -149,9 +149,13 @@ try { _irRemoteWrapper = new IrRemoteWrapper(); - return DetectionResult.DevicePresent; - + return DetectionResult.DevicePresent; } + catch (DirectoryNotFoundException) + { + IrssLog.Warn("{0,15}: IrRemote.dll not found", Name); + return DetectionResult.DeviceNotFound; + } catch (Exception ex) { IrssLog.Error("{0,15}: exception {1} type: {2}", Name, ex.Message, ex.GetType()); @@ -252,7 +256,7 @@ XmlTextWriter writer = new XmlTextWriter(ConfigurationFile, Encoding.UTF8); writer.Formatting = Formatting.Indented; writer.Indentation = 1; - writer.IndentChar = (char) 9; + writer.IndentChar = (char)9; writer.WriteStartDocument(true); writer.WriteStartElement("settings"); // <settings> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2010-06-28 22:27:10 UTC (rev 3654) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2010-06-28 22:52:40 UTC (rev 3655) @@ -190,12 +190,15 @@ } catch (COMException ex) { - if (ex.ErrorCode != -2147221164) + if (ex.ErrorCode == -2147221164) { - IrssLog.Warn("{0,15}: exception {1}", Name, ex.ErrorCode); + IrssLog.Warn("{0,15}: needed interface not found", Name); + } + else + { + IrssLog.Debug("{0,15}: exception {1}", Name, ex.ErrorCode); return DetectionResult.DeviceException; } - IrssLog.Debug("{0,15}: exception {1}", Name, ex.ErrorCode); } catch (Exception ex) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-06-28 22:53:51
|
Revision: 3656 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3656&view=rev Author: chemelli_sf Date: 2010-06-28 22:53:45 +0000 (Mon, 28 Jun 2010) Log Message: ----------- Fixed buffer size for 3 plugins Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2010-06-28 22:52:40 UTC (rev 3655) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501Receiver.cs 2010-06-28 22:53:45 UTC (rev 3656) @@ -258,7 +258,7 @@ Win32.DeviceInterfaceDetailData deviceInterfaceDetailData = new Win32.DeviceInterfaceDetailData { - Size = Win32.Check64Bit() ? 8 : 5 + Size = 5 }; if (!Win32.SetupDiGetDeviceInterfaceDetail(handle, ref deviceInterfaceData, ref deviceInterfaceDetailData, cbData, Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2010-06-28 22:52:40 UTC (rev 3655) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507Receiver.cs 2010-06-28 22:53:45 UTC (rev 3656) @@ -128,7 +128,7 @@ } } catch (FileNotFoundException) - { + { //No error if driver is not installed. Handled using default return "DeviceNotFound" } catch (Exception ex) @@ -307,7 +307,7 @@ Win32.DeviceInterfaceDetailData deviceInterfaceDetailData = new Win32.DeviceInterfaceDetailData { - Size = Win32.Check64Bit() ? 8 : 5 + Size = 5 }; if (!Win32.SetupDiGetDeviceInterfaceDetail(handle, ref deviceInterfaceData, ref deviceInterfaceDetailData, cbData, Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2010-06-28 22:52:40 UTC (rev 3655) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2010-06-28 22:53:45 UTC (rev 3656) @@ -270,7 +270,7 @@ Win32.DeviceInterfaceDetailData deviceInterfaceDetailData = new Win32.DeviceInterfaceDetailData { - Size = Win32.Check64Bit() ? 8 : 5 + Size = 5 }; if (!Win32.SetupDiGetDeviceInterfaceDetail(handle, ref deviceInterfaceData, ref deviceInterfaceDetailData, cbData, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-12-03 15:10:39
|
Revision: 3993 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3993&view=rev Author: chef_koch Date: 2010-12-03 15:10:31 +0000 (Fri, 03 Dec 2010) Log Message: ----------- copy plugin dlls to irservers outdir during postbuild Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Ads Tech PTV-335 Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/CoolCommand Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Direct Input Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTV Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionREMOTE Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HCW Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501 Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507 Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTrans Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Keyboard Input.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDrive Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102 Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/Speech Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/USB-UIRT Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/WiimoteLib.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Windows Message Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10 Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.csproj Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Ads Tech PTV-335 Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Ads Tech PTV-335 Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Ads Tech PTV-335 Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Ads Tech PTV-335 Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -96,4 +96,7 @@ <Target Name="AfterBuild"> </Target> --> + <PropertyGroup> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/CoolCommand Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/CoolCommand Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/CoolCommand Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>CoolCommand Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -98,7 +98,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Custom HID Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <StartupObject> </StartupObject> <ApplicationIcon>Icon.ico</ApplicationIcon> @@ -128,7 +128,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Direct Input Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Direct Input Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Direct Input Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Direct Input Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <StartupObject> </StartupObject> @@ -113,4 +113,7 @@ <Target Name="AfterBuild"> </Target> --> + <PropertyGroup> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTV Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTV Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTV Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -14,6 +14,7 @@ <FileAlignment>512</FileAlignment> <TargetFrameworkSubset> </TargetFrameworkSubset> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -125,4 +126,7 @@ <Target Name="AfterBuild"> </Target> --> + <PropertyGroup> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionREMOTE Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionREMOTE Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionREMOTE Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>FusionREMOTE Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -101,7 +101,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Girder Plugin</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -110,7 +110,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HCW Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HCW Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HCW Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>HCW Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -112,7 +112,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501 Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501 Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501 Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -16,6 +16,7 @@ <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -95,4 +96,7 @@ <Target Name="AfterBuild"> </Target> --> + <PropertyGroup> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507 Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507 Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507 Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -18,6 +18,7 @@ <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -100,4 +101,7 @@ <Target Name="AfterBuild"> </Target> --> + <PropertyGroup> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>IRMan Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -106,7 +106,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTrans Transceiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTrans Transceiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTrans Transceiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>IRTrans Transceiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -112,7 +112,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>IgorPlug Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <StartupObject> </StartupObject> @@ -104,7 +104,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Imon USB Receivers</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <StartupObject> </StartupObject> <ApplicationIcon>Icon.ico</ApplicationIcon> @@ -116,7 +116,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Keyboard Input.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Keyboard Input.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Keyboard Input.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -18,6 +18,7 @@ <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -93,4 +94,7 @@ <Target Name="AfterBuild"> </Target> --> + <PropertyGroup> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDrive Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDrive Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDrive Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -16,6 +16,7 @@ <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -103,4 +104,7 @@ <Target Name="AfterBuild"> </Target> --> + <PropertyGroup> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -16,6 +16,7 @@ <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -96,4 +97,7 @@ <Target Name="AfterBuild"> </Target> --> + <PropertyGroup> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Microsoft MCE Transceiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> @@ -133,7 +133,8 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\" +rem xcopy /Y "$(TargetDir)DefaultRemoteMap.xml" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\" +rem xcopy /Y "$(ProjectDir)References\*.dll" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Pinnacle Serial Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <StartupObject> </StartupObject> @@ -108,7 +108,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102 Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102 Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102 Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -16,6 +16,7 @@ <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -94,4 +95,7 @@ <Target Name="AfterBuild"> </Target> --> + <PropertyGroup> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>RedEye Blaster</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -105,7 +105,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Serial IR Blaster</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -105,7 +105,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/Speech Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/Speech Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/Speech Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -15,6 +15,7 @@ <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -92,4 +93,7 @@ <Target Name="AfterBuild"> </Target> --> + <PropertyGroup> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Technotrend Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <StartupObject> </StartupObject> @@ -110,7 +110,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/USB-UIRT Transceiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/USB-UIRT Transceiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/USB-UIRT Transceiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>USB-UIRT Transceiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -110,7 +110,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Wii Remote Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -111,7 +111,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/WiimoteLib.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/WiimoteLib.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/WiimoteLib.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -26,6 +26,7 @@ <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -95,4 +96,7 @@ <Target Name="AfterBuild"> </Target> --> + <PropertyGroup> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>WinLirc Transceiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -124,7 +124,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Windows Message Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Windows Message Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Windows Message Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Windows Message Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -108,7 +108,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10 Transceiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10 Transceiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10 Transceiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>X10 Transceiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <FileUpgradeFlags> </FileUpgradeFlags> @@ -115,7 +115,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.csproj 2010-12-03 14:09:56 UTC (rev 3992) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.csproj 2010-12-03 15:10:31 UTC (rev 3993) @@ -9,7 +9,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>XBCDRC Receiver</AssemblyName> - <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> <ApplicationIcon>Icon.ico</ApplicationIcon> <StartupObject> </StartupObject> @@ -100,7 +100,6 @@ </Target> --> <PropertyGroup> - <PostBuildEvent> - </PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2011-05-02 19:55:20
|
Revision: 4192 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4192&view=rev Author: chef_koch Date: 2011-05-02 19:55:14 +0000 (Mon, 02 May 2011) Log Message: ----------- moved 3rd party assemblies to subdir "References" copy all files in "References" to output dir during post build Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/Tira Transceiver.csproj Added Paths: ----------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/References/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/References/ttBdaDrvApi_Dll.dll trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/References/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/References/Tira2.dll Removed Paths: ------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/ttBdaDrvApi_Dll.dll trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/Tira2.dll Copied: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/References/ttBdaDrvApi_Dll.dll (from rev 4189, trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/ttBdaDrvApi_Dll.dll) =================================================================== (Binary files differ) Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.csproj 2011-05-02 17:22:43 UTC (rev 4191) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.csproj 2011-05-02 19:55:14 UTC (rev 4192) @@ -100,11 +100,6 @@ <LastGenOutput>Resources.Designer.cs</LastGenOutput> </EmbeddedResource> </ItemGroup> - <ItemGroup> - <Content Include="ttBdaDrvApi_Dll.dll"> - <CopyToOutputDirectory>Always</CopyToOutputDirectory> - </Content> - </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. @@ -114,6 +109,7 @@ </Target> --> <PropertyGroup> - <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\" +xcopy /Y "$(ProjectDir)References\*" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Deleted: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/ttBdaDrvApi_Dll.dll =================================================================== (Binary files differ) Copied: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/References/Tira2.dll (from rev 4189, trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/Tira2.dll) =================================================================== (Binary files differ) Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/Tira Transceiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/Tira Transceiver.csproj 2011-05-02 17:22:43 UTC (rev 4191) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/Tira Transceiver.csproj 2011-05-02 19:55:14 UTC (rev 4192) @@ -103,9 +103,6 @@ </ItemGroup> <ItemGroup> <Content Include="Icon.ico" /> - <Content Include="Tira2.dll"> - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> - </Content> </ItemGroup> <ItemGroup> <EmbeddedResource Include="Configure.resx"> @@ -127,6 +124,7 @@ </Target> --> <PropertyGroup> - <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> + <PostBuildEvent>xcopy /Y "$(TargetDir)$(ProjectName).???" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\" +xcopy /Y "$(ProjectDir)References\*" "$(SolutionDir)..\$(OutDir)Plugins\$(ProjectName)\"</PostBuildEvent> </PropertyGroup> </Project> \ No newline at end of file Deleted: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/Tira2.dll =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |