From: <che...@us...> - 2010-11-17 22:34:51
|
Revision: 3943 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3943&view=rev Author: chef_koch Date: 2010-11-17 22:34:45 +0000 (Wed, 17 Nov 2010) Log Message: ----------- fixed possible null refs Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/Server.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/Program.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/ReceiverWindow.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/Server.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/Server.cs 2010-11-17 20:21:28 UTC (rev 3942) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/Server.cs 2010-11-17 22:34:45 UTC (rev 3943) @@ -232,8 +232,8 @@ /// <returns><c>true</c> if successful, otherwise <c>false</c>.</returns> public bool Send(ClientManager sendTo, IrssMessage message) { - if (!_clientManagers.Contains(sendTo)) - return false; + if (_clientManagers == null) return false; + if (!_clientManagers.Contains(sendTo)) return false; try { Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/Program.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/Program.cs 2010-11-17 20:21:28 UTC (rev 3942) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/Program.cs 2010-11-17 22:34:45 UTC (rev 3943) @@ -22,7 +22,6 @@ using System; using System.Collections; -using System.Collections.Generic; using System.Configuration.Install; using System.IO; using System.Reflection; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/ReceiverWindow.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/ReceiverWindow.cs 2010-11-17 20:21:28 UTC (rev 3942) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/ReceiverWindow.cs 2010-11-17 22:34:45 UTC (rev 3943) @@ -1,13 +1,11 @@ using System; -using System.Collections.Generic; -using System.Text; using System.Windows.Forms; namespace IRServer { internal delegate void ProcessMessage(ref Message m); - class ReceiverWindow : NativeWindow + sealed class ReceiverWindow : NativeWindow { #region Constructor/Destructor This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-11-18 17:34:55
|
Revision: 3951 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3951&view=rev Author: chef_koch Date: 2010-11-18 17:34:47 +0000 (Thu, 18 Nov 2010) Log Message: ----------- updated ignore list Property Changed: ---------------- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/ trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/ trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/ trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IRServer.Shared/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/ Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window) ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IRServer.Shared ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-11-18 17:37:28
|
Revision: 3952 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3952&view=rev Author: chef_koch Date: 2010-11-18 17:37:19 +0000 (Thu, 18 Nov 2010) Log Message: ----------- updated framework to 3.5 Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Abstractor.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration/IR Server Configuration.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray/IR Server Tray.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IRServer.Shared/IRServer.Shared.csproj 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/IR Server Plugin Interface/IR Server Plugin Interface.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/Applications/Abstractor/Abstractor.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Abstractor.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Abstractor.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{66F37FF9-0398-4954-812D-065C2D153746}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -18,6 +18,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -61,6 +62,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Deployment" /> <Reference Include="System.Drawing" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{F8CC05AA-6306-459E-BD32-40C02489EFEC}</ProjectGuid> <OutputType>Exe</OutputType> @@ -18,6 +18,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -54,6 +55,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{4CD051F4-F2B5-47B3-8647-F47C2E4DC131}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -19,6 +19,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -53,6 +54,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{EDE4F0AC-CA13-4E4F-8466-EF0519B7B0EF}</ProjectGuid> <OutputType>Exe</OutputType> @@ -18,6 +18,7 @@ <UpgradeBackupLocation> </UpgradeBackupLocation> <ApplicationManifest>HcwPvrTuner.exe.manifest</ApplicationManifest> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -47,6 +48,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> </ItemGroup> <ItemGroup> <Compile Include="Program.cs" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{C6B0CF12-01D3-439A-9FB4-DEFD5B32F6FB}</ProjectGuid> <OutputType>Exe</OutputType> @@ -20,6 +20,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -55,6 +56,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Xml" /> </ItemGroup> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{54E0E8FA-09C3-4755-B9CE-E7E5DDA3E932}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -20,6 +20,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -55,6 +56,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{B5E711A2-E6D0-4BEA-B66B-7A8B0BCA6A4D}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -19,6 +19,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -54,6 +55,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{097F7027-77A1-4623-8D6C-3D2020769EFD}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -19,6 +19,7 @@ <UpgradeBackupLocation> </UpgradeBackupLocation> <ApplicationManifest>KeyboardInputRelay.exe.manifest</ApplicationManifest> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -54,6 +55,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{58BFF250-541B-4AA4-A62D-ACB819AD317B}</ProjectGuid> <OutputType>Exe</OutputType> @@ -16,6 +16,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -44,6 +45,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Xml" /> </ItemGroup> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{2F296C09-627B-4D6E-A041-1601A8C030C7}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -18,6 +18,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -48,6 +49,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Deployment" /> <Reference Include="System.Drawing" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -19,6 +19,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -59,6 +60,9 @@ <HintPath>References\MediaState.dll</HintPath> </Reference> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{905131F8-F8AC-4A65-A722-37783902D7B8}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -20,6 +20,7 @@ <UpgradeBackupLocation> </UpgradeBackupLocation> <ApplicationManifest>SageSetup.exe.manifest</ApplicationManifest> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -52,6 +53,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Deployment" /> <Reference Include="System.Drawing" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -19,6 +19,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -55,6 +56,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -19,6 +19,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -55,6 +56,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{21E04B17-D850-43E7-AAD3-876C0E062BDB}</ProjectGuid> <OutputType>Library</OutputType> @@ -17,6 +17,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -50,6 +51,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{D1BAC7A9-FFB6-44BA-825F-32506831DC3D}</ProjectGuid> <OutputType>Library</OutputType> @@ -17,6 +17,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -50,6 +51,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Speech, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{106A69D2-670C-4DE5-A81C-A3CD5D3F21EB}</ProjectGuid> <OutputType>Library</OutputType> @@ -17,6 +17,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -50,6 +51,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -22,6 +22,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -57,6 +58,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> </ItemGroup> <ItemGroup> <Compile Include="Client.cs" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -16,6 +16,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -49,6 +50,11 @@ <Compile Include="Scheduler.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> + <ItemGroup> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> + </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -1,7 +1,7 @@ <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <ProjectType>Local</ProjectType> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{28923F6E-8A68-4BC8-A507-825B09C3F64E}</ProjectGuid> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> @@ -28,6 +28,7 @@ <SignAssembly>false</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <OldToolsVersion>2.0</OldToolsVersion> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <OutputPath>bin\Debug\</OutputPath> @@ -84,6 +85,9 @@ <Reference Include="System"> <Name>System</Name> </Reference> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing"> <Name>System.Drawing</Name> </Reference> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{46F1DB42-F082-4200-B939-6E4B72A8117C}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -34,6 +34,7 @@ <IsWebBootstrapper>false</IsWebBootstrapper> <UseApplicationTrust>false</UseApplicationTrust> <BootstrapperEnabled>true</BootstrapperEnabled> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -75,6 +76,9 @@ </Reference> <Reference Include="System" /> <Reference Include="System.Configuration.Install" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Management" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration/IR Server Configuration.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration/IR Server Configuration.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration/IR Server Configuration.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{1E84C2ED-92FC-43A4-9C12-374B3347F6D7}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -40,6 +40,7 @@ <UseApplicationTrust>false</UseApplicationTrust> <BootstrapperEnabled>true</BootstrapperEnabled> <ApplicationManifest>IR Server Configuration.exe.manifest</ApplicationManifest> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -83,6 +84,9 @@ <SpecificVersion>False</SpecificVersion> </Reference> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.ServiceProcess" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray/IR Server Tray.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray/IR Server Tray.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray/IR Server Tray.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -3,14 +3,14 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{5C0DF76E-D1AE-4161-B8D1-843925C8AB58}</ProjectGuid> <OutputType>WinExe</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Tray</RootNamespace> <AssemblyName>IR Server Tray</AssemblyName> - <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> <FileAlignment>512</FileAlignment> <StartupObject>IRServer.Tray.Program</StartupObject> <ApplicationIcon>Resources\iconGreen.ico</ApplicationIcon> @@ -42,6 +42,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.ServiceProcess" /> <Reference Include="System.Data" /> <Reference Include="System.Deployment" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IRServer.Shared/IRServer.Shared.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IRServer.Shared/IRServer.Shared.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IRServer.Shared/IRServer.Shared.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -3,14 +3,14 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{0C6A59C2-B5CC-48EF-A41F-0F1E463D8391}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Shared</RootNamespace> <AssemblyName>IRServer.Shared</AssemblyName> - <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> <FileAlignment>512</FileAlignment> <SignAssembly>false</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> @@ -42,6 +42,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.ServiceProcess" /> <Reference Include="System.Xml" /> </ItemGroup> 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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Ads Tech PTV-335 Receiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -16,6 +16,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -50,6 +51,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> </ItemGroup> <ItemGroup> 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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/CoolCommand Receiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -16,6 +16,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -54,6 +55,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> Modified: trunk/plugins/IR Server Suite/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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -18,6 +18,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -54,6 +55,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Direct Input Receiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -18,6 +18,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -56,6 +57,9 @@ <Reference Include="Microsoft.DirectX, Version=1.0.2902.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> <Reference Include="Microsoft.DirectX.DirectInput, Version=1.0.2902.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> Modified: trunk/plugins/IR Server Suite/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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTV Receiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -10,7 +10,7 @@ <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>FireDTV Receiver</AssemblyName> - <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> <FileAlignment>512</FileAlignment> <TargetFrameworkSubset> </TargetFrameworkSubset> @@ -64,6 +64,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionREMOTE Receiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -16,6 +16,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -53,6 +54,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -16,6 +16,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -55,6 +56,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HCW Receiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -16,6 +16,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -52,6 +53,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.csproj 2010-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}</ProjectGuid> <OutputType>Library</OutputType> @@ -17,6 +17,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -56,6 +57,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> </ItemGroup> 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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501 Receiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -15,6 +15,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -51,6 +52,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> </ItemGroup> <ItemGroup> 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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507 Receiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -17,6 +17,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -53,6 +54,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> </ItemGroup> 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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -16,6 +16,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -52,6 +53,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTrans Transceiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -16,6 +16,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -53,6 +54,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -18,6 +18,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -54,6 +55,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> Modified: trunk/plugins/IR Server Suite/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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -18,6 +18,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> @@ -54,6 +55,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> Modified: trunk/plugins/IR Server Suite/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-11-18 17:34:47 UTC (rev 3951) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Keyboard Input.csproj 2010-11-18 17:37:19 UTC (rev 3952) @@ -17,6 +17,7 @@ <OldToolsVersion>2.0</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -51,6 +52,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="S... [truncated message content] |
From: <che...@us...> - 2010-11-18 18:01:48
|
Revision: 3953 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3953&view=rev Author: chef_koch Date: 2010-11-18 18:01:39 +0000 (Thu, 18 Nov 2010) Log Message: ----------- updated project configurations Debug: use DEBUG;Trace, no code optimization, no error on warnings Release: no symbols, use code optimization, no error on warnings Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Abstractor.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Virtual Remote Skin Editor.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Web Remote.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration/IR Server Configuration.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray/IR Server Tray.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IRServer.Shared/IRServer.Shared.csproj 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/IR Server Plugin Interface/IR Server Plugin Interface.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/Applications/Abstractor/Abstractor.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Abstractor.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Abstractor.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,8 +44,8 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <DebugSymbols>true</DebugSymbols> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> + <DefineConstants>TRACE;DEBUG</DefineConstants> + <TreatWarningsAsErrors>false</TreatWarningsAsErrors> <DebugType>full</DebugType> <PlatformTarget>x86</PlatformTarget> <UseVSHostingProcess>false</UseVSHostingProcess> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -48,10 +48,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -47,10 +47,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -41,10 +41,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -49,10 +49,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -49,10 +49,13 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> + <Optimize>false</Optimize> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -48,10 +48,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -48,10 +48,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -38,10 +38,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -42,10 +42,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -49,10 +49,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="MediaState, Version=1.0.1740.26564, Culture=neutral"> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -46,10 +46,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -49,10 +49,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -49,10 +49,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -47,10 +47,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Virtual Remote Skin Editor.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Virtual Remote Skin Editor.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Virtual Remote Skin Editor.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{D871AB9A-71B3-4D63-8320-084BAD75064E}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -46,10 +46,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Web Remote.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Web Remote.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Web Remote.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -2,7 +2,7 @@ <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>9.0.21022</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{CCDBA239-8E8E-4F5F-A098-7132EED5F160}</ProjectGuid> <OutputType>WinExe</OutputType> @@ -45,10 +45,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,10 +44,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,10 +44,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,10 +44,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -51,10 +51,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -40,10 +40,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Compile Include="ScheduleEvent.cs" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -52,11 +52,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -76,10 +76,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System"> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -64,10 +64,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="DevAge.Core, Version=4.10.2845.21697, Culture=neutral, PublicKeyToken=faad465d84242dbf, processorArchitecture=MSIL"> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration/IR Server Configuration.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration/IR Server Configuration.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration/IR Server Configuration.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -69,10 +69,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="DevAge.Core, Version=4.10.2845.21697, Culture=neutral, PublicKeyToken=faad465d84242dbf, processorArchitecture=MSIL"> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray/IR Server Tray.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray/IR Server Tray.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray/IR Server Tray.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -35,10 +35,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IRServer.Shared/IRServer.Shared.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IRServer.Shared/IRServer.Shared.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IRServer.Shared/IRServer.Shared.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -35,10 +35,12 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> + <Optimize>true</Optimize> </PropertyGroup> <ItemGroup> <Reference Include="System" /> Modified: trunk/plugins/IR Server Suite/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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ads Tech PTV-335 Receiver/Ads Tech PTV-335 Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -42,12 +42,14 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Release\</OutputPath> <Optimize>true</Optimize> + <DefineConstants> + </DefineConstants> </PropertyGroup> <ItemGroup> <Reference Include="System" /> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/CoolCommand Receiver/CoolCommand Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -46,7 +46,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -46,7 +46,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/Direct Input Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -46,7 +46,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTV Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,7 +44,7 @@ <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> <DocumentationFile>bin\Debug\FireDTV Receiver.XML</DocumentationFile> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionREMOTE Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -45,7 +45,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -47,7 +47,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HCW Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,7 +44,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.csproj 2010-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -48,7 +48,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR501 Receiver/IR501 Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -43,7 +43,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/IR507 Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -45,7 +45,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,7 +44,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTrans Transceiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -45,7 +45,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -46,7 +46,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -46,7 +46,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Keyboard Input/Keyboard Input.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -43,7 +43,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDrive Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -42,7 +42,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -42,7 +42,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,10 +44,10 @@ <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> + <TreatWarningsAsErrors>false</TreatWarningsAsErrors> <UseVSHostingProcess>false</UseVSHostingProcess> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> @@ -59,7 +59,7 @@ </DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> + <TreatWarningsAsErrors>false</TreatWarningsAsErrors> </PropertyGroup> <ItemGroup> <Reference Include="System" /> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -46,7 +46,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/RC102 Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -42,7 +42,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,7 +44,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,7 +44,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Speech Receiver/Speech Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -41,7 +41,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -50,7 +50,7 @@ <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/USB-UIRT Transceiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,7 +44,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>AnyCPU</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -44,7 +44,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <OutputPath>bin\Debug\</OutputPath> - <DefineConstants>DEBUG</DefineConstants> + <DefineConstants>TRACE;DEBUG</DefineConstants> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> <PlatformTarget>x86</PlatformTarget> 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-11-18 17:37:19 UTC (rev 3952) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WiimoteLib/WiimoteLib.csproj 2010-11-18 18:01:39 UTC (rev 3953) @@ -54,7 +54,7 @@ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <Outpu... [truncated message content] |
From: <che...@us...> - 2010-11-18 20:24:22
|
Revision: 3959 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3959&view=rev Author: chef_koch Date: 2010-11-18 20:24:15 +0000 (Thu, 18 Nov 2010) Log Message: ----------- added missing usings when debug config is active Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IrDecoder.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/WebServer.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/ClientManager.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssLog.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/Custom HID Receiver/RawInput.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/Girder Plugin/Girder Plugin.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/GirderPluginWrapper.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/IR507 Receiver/RawInput.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.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/IgorPlug Receiver/IrDecoder.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDriveReceiver.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/Driver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/IrDecoder.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.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/Wii Remote Receiver/Wii Remote Receiver.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/Windows Message Receiver/Windows Message 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/Applications/IR File Tool/IrDecoder.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IrDecoder.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IrDecoder.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif namespace IrFileTool { Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/WebServer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/WebServer.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/WebServer.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.IO; using System.Net; using System.Net.Sockets; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/ClientManager.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/ClientManager.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/ClientManager.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Net; using System.Net.Sockets; using System.Threading; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssLog.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssLog.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssLog.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.IO; using System.Reflection; using MediaPortal.Core.Logging; 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 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/Custom HID Receiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/RawInput.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/RawInput.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Custom HID Receiver/RawInput.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Collections.Generic; using System.Runtime.InteropServices; using Microsoft.Win32; 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 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Direct Input Receiver/DirectInputReceiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Text; 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 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FireDTV Receiver/FireDTVReceiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Text; 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 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/FusionRemote Receiver/FusionRemoteReceiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -22,6 +22,9 @@ using System; using System.ComponentModel; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/Girder Plugin.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Text; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/GirderPluginWrapper.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/GirderPluginWrapper.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Girder Plugin/GirderPluginWrapper.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Runtime.InteropServices; 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-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/HCW Receiver/HcwReceiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Text; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/RawInput.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/RawInput.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR507 Receiver/RawInput.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -22,6 +22,9 @@ using System; using System.Collections.Generic; +#if TRACE +using System.Diagnostics; +#endif using System.Runtime.InteropServices; using Microsoft.Win32; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRMan Receiver/IRMan Receiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.IO.Ports; 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 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IRTrans Transceiver/IRTransTransceiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Net.Sockets; 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 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IgorPlug Receiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -23,6 +23,9 @@ using System; using System.Collections.Generic; using System.ComponentModel; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IrDecoder.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IrDecoder.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IgorPlug Receiver/IrDecoder.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif namespace IRServer.Plugin { Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDriveReceiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDriveReceiver.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/LiveDrive Receiver/LiveDriveReceiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Runtime.InteropServices; 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-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/MacMini Receiver/MacMini Receiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -22,6 +22,9 @@ using System; using System.ComponentModel; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Driver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Driver.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Driver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -22,6 +22,9 @@ using System; using System.ComponentModel; +#if TRACE +using System.Diagnostics; +#endif using System.IO; using System.Runtime.InteropServices; using Microsoft.Win32.SafeHandles; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/IrDecoder.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/IrDecoder.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/IrDecoder.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif namespace IRServer.Plugin { Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Pinnacle Serial Receiver/Pinnacle Serial Receiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -29,6 +29,9 @@ using System.Windows.Forms; using System.Xml; using IRServer.Plugin.Properties; +#if TRACE +using System.Diagnostics; +#endif namespace IRServer.Plugin { Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RedEye Blaster/RedEye Blaster.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.IO.Ports; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Serial IR Blaster/Serial IR Blaster.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -20,6 +20,10 @@ #endregion +#if TRACE +using System; +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.IO.Ports; 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 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Technotrend Receiver/Technotrend Receiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -22,6 +22,9 @@ using System; using System.Collections.Generic; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.Runtime.InteropServices; using IRServer.Plugin.Properties; 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 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/USB-UIRT Transceiver/UirtTransceiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -22,6 +22,9 @@ using System; using System.ComponentModel; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Runtime.InteropServices; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -20,6 +20,10 @@ #endregion +#if TRACE +using System; +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Text; 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 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/WinLirc Transceiver/WinLirc Transceiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Net; Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Windows Message Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Windows Message Receiver.cs 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Windows Message Receiver/Windows Message Receiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -20,6 +20,10 @@ #endregion +#if TRACE +using System; +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Text; 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-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/X10 Transceiver/X10Transceiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -21,6 +21,9 @@ #endregion using System; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Runtime.InteropServices; 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 2010-11-18 18:46:30 UTC (rev 3958) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/XBCDRC Receiver/XBCDRC Receiver.cs 2010-11-18 20:24:15 UTC (rev 3959) @@ -22,6 +22,9 @@ using System; using System.ComponentModel; +#if TRACE +using System.Diagnostics; +#endif using System.Drawing; using System.IO; using System.Runtime.InteropServices; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-12-04 08:01:43
|
Revision: 3997 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3997&view=rev Author: chef_koch Date: 2010-12-04 08:01:37 +0000 (Sat, 04 Dec 2010) Log Message: ----------- Added Paths: ----------- trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/Properties/ Property Changed: ---------------- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/ Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-12-04 08:43:17
|
Revision: 3999 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3999&view=rev Author: chef_koch Date: 2010-12-04 08:43:11 +0000 (Sat, 04 Dec 2010) Log Message: ----------- Property Changed: ---------------- trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/ trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ira Transceiver/ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/ Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ira Transceiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj Property changes on: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver ___________________________________________________________________ Modified: svn:ignore - [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user + [Bb]in [Oo]bj [Dd]ebug [Rr]elease _ReSharper.* thumbs.db *.aps *.bak *.cache *.eto *.exe *.log *.mpe1 *.patch *.suo *.user obj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-12-04 08:45:49
|
Revision: 4000 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4000&view=rev Author: chef_koch Date: 2010-12-04 08:45:42 +0000 (Sat, 04 Dec 2010) Log Message: ----------- readded CommandProcessor.csproj, TestApp.csproj, Ira Transceiver.csproj and Tira Transceiver.csproj to the solution disabled them for debug and release build configuration disabled Tray Launcher for debug and release build Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/CommandProcessor.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/Properties/AssemblyInfo.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/TestApp.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ira Transceiver/Ira Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/Properties/AssemblyInfo.cs 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 Suite.sln Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/CommandProcessor.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/CommandProcessor.csproj 2010-12-04 08:43:11 UTC (rev 3999) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/CommandProcessor.csproj 2010-12-04 08:45:42 UTC (rev 4000) @@ -1,8 +1,8 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{49CF376E-811C-4EB4-817F-A39C9529B608}</ProjectGuid> <OutputType>Library</OutputType> @@ -10,8 +10,29 @@ <RootNamespace>Commands</RootNamespace> <AssemblyName>CommandProcessor</AssemblyName> <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent> - <SignAssembly>true</SignAssembly> + <SignAssembly>false</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> + <FileUpgradeFlags> + </FileUpgradeFlags> + <UpgradeBackupLocation> + </UpgradeBackupLocation> + <OldToolsVersion>2.0</OldToolsVersion> + <PublishUrl>publish\</PublishUrl> + <Install>true</Install> + <InstallFrom>Disk</InstallFrom> + <UpdateEnabled>false</UpdateEnabled> + <UpdateMode>Foreground</UpdateMode> + <UpdateInterval>7</UpdateInterval> + <UpdateIntervalUnits>Days</UpdateIntervalUnits> + <UpdatePeriodically>false</UpdatePeriodically> + <UpdateRequired>false</UpdateRequired> + <MapFileExtensions>true</MapFileExtensions> + <ApplicationRevision>0</ApplicationRevision> + <ApplicationVersion>1.0.0.%2a</ApplicationVersion> + <IsWebBootstrapper>false</IsWebBootstrapper> + <UseApplicationTrust>false</UseApplicationTrust> + <BootstrapperEnabled>true</BootstrapperEnabled> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -35,8 +56,29 @@ <WarningLevel>4</WarningLevel> <TreatWarningsAsErrors>true</TreatWarningsAsErrors> </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> + <DebugSymbols>true</DebugSymbols> + <OutputPath>bin\x86\Debug\</OutputPath> + <DefineConstants>DEBUG</DefineConstants> + <DocumentationFile>bin\Debug\CommandProcessor.xml</DocumentationFile> + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> + <DebugType>full</DebugType> + <PlatformTarget>x86</PlatformTarget> + <UseVSHostingProcess>false</UseVSHostingProcess> + <ErrorReport>prompt</ErrorReport> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' "> + <OutputPath>bin\x86\Release\</OutputPath> + <Optimize>true</Optimize> + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> + <PlatformTarget>x86</PlatformTarget> + <ErrorReport>prompt</ErrorReport> + </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> @@ -50,18 +92,6 @@ <Compile Include="Control Statements\CommandAbortMacro.cs" /> <Compile Include="Exceptions\MacroExecutionException.cs" /> <Compile Include="Exceptions\MacroStructureException.cs" /> - <Compile Include="Forms\CommandEditDialog.cs"> - <SubType>Form</SubType> - </Compile> - <Compile Include="Forms\CommandEditDialog.Designer.cs"> - <DependentUpon>CommandEditDialog.cs</DependentUpon> - </Compile> - <Compile Include="Forms\ControlLabel.cs"> - <SubType>UserControl</SubType> - </Compile> - <Compile Include="Forms\ControlLabel.Designer.cs"> - <DependentUpon>ControlLabel.cs</DependentUpon> - </Compile> <Compile Include="Forms\EditAbortMessage.cs"> <SubType>Form</SubType> </Compile> @@ -172,14 +202,6 @@ </Compile> </ItemGroup> <ItemGroup> - <EmbeddedResource Include="Forms\CommandEditDialog.resx"> - <DependentUpon>CommandEditDialog.cs</DependentUpon> - <SubType>Designer</SubType> - </EmbeddedResource> - <EmbeddedResource Include="Forms\ControlLabel.resx"> - <SubType>Designer</SubType> - <DependentUpon>ControlLabel.cs</DependentUpon> - </EmbeddedResource> <EmbeddedResource Include="Forms\EditAbortMessage.resx"> <DependentUpon>EditAbortMessage.cs</DependentUpon> <SubType>Designer</SubType> @@ -261,6 +283,33 @@ <Content Include="Graphics\MoveUp.png" /> <Content Include="Graphics\Plus.png" /> </ItemGroup> + <ItemGroup> + <BootstrapperPackage Include="Microsoft.Net.Client.3.5"> + <Visible>False</Visible> + <ProductName>.NET Framework Client Profile</ProductName> + <Install>false</Install> + </BootstrapperPackage> + <BootstrapperPackage Include="Microsoft.Net.Framework.2.0"> + <Visible>False</Visible> + <ProductName>.NET Framework 2.0 %28x86%29</ProductName> + <Install>true</Install> + </BootstrapperPackage> + <BootstrapperPackage Include="Microsoft.Net.Framework.3.0"> + <Visible>False</Visible> + <ProductName>.NET Framework 3.0 %28x86%29</ProductName> + <Install>false</Install> + </BootstrapperPackage> + <BootstrapperPackage Include="Microsoft.Net.Framework.3.5"> + <Visible>False</Visible> + <ProductName>.NET Framework 3.5</ProductName> + <Install>false</Install> + </BootstrapperPackage> + <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> + <Visible>False</Visible> + <ProductName>.NET Framework 3.5 SP1</ProductName> + <Install>false</Install> + </BootstrapperPackage> + </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/AssemblyInfo.cs 2010-12-04 08:43:11 UTC (rev 3999) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/AssemblyInfo.cs 2010-12-04 08:45:42 UTC (rev 4000) @@ -20,6 +20,7 @@ using System; using System.Reflection; +using System.Resources; // // General Information about an assembly is controlled through the following Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/Resources.Designer.cs 2010-12-04 08:43:11 UTC (rev 3999) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/Resources.Designer.cs 2010-12-04 08:45:42 UTC (rev 4000) @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. -// Runtime Version:2.0.50727.832 +// Runtime Version:2.0.50727.4952 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/Properties/AssemblyInfo.cs 2010-12-04 08:43:11 UTC (rev 3999) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/Properties/AssemblyInfo.cs 2010-12-04 08:45:42 UTC (rev 4000) @@ -20,6 +20,7 @@ using System; using System.Reflection; +using System.Resources; // // General Information about an assembly is controlled through the following Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/TestApp.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/TestApp.csproj 2010-12-04 08:43:11 UTC (rev 3999) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/TestApp.csproj 2010-12-04 08:45:42 UTC (rev 4000) @@ -1,14 +1,35 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> - <ProductVersion>8.0.50727</ProductVersion> + <ProductVersion>9.0.30729</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{A86517F4-BBCF-4D56-B0CA-C9E36AFAC550}</ProjectGuid> <OutputType>WinExe</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>TestApp</RootNamespace> <AssemblyName>TestApp</AssemblyName> + <FileUpgradeFlags> + </FileUpgradeFlags> + <UpgradeBackupLocation> + </UpgradeBackupLocation> + <OldToolsVersion>2.0</OldToolsVersion> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <PublishUrl>publish\</PublishUrl> + <Install>true</Install> + <InstallFrom>Disk</InstallFrom> + <UpdateEnabled>false</UpdateEnabled> + <UpdateMode>Foreground</UpdateMode> + <UpdateInterval>7</UpdateInterval> + <UpdateIntervalUnits>Days</UpdateIntervalUnits> + <UpdatePeriodically>false</UpdatePeriodically> + <UpdateRequired>false</UpdateRequired> + <MapFileExtensions>true</MapFileExtensions> + <ApplicationRevision>0</ApplicationRevision> + <ApplicationVersion>1.0.0.%2a</ApplicationVersion> + <IsWebBootstrapper>false</IsWebBootstrapper> + <UseApplicationTrust>false</UseApplicationTrust> + <BootstrapperEnabled>true</BootstrapperEnabled> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -32,6 +53,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> @@ -57,6 +81,33 @@ <Name>VariableList</Name> </ProjectReference> </ItemGroup> + <ItemGroup> + <BootstrapperPackage Include="Microsoft.Net.Client.3.5"> + <Visible>False</Visible> + <ProductName>.NET Framework Client Profile</ProductName> + <Install>false</Install> + </BootstrapperPackage> + <BootstrapperPackage Include="Microsoft.Net.Framework.2.0"> + <Visible>False</Visible> + <ProductName>.NET Framework 2.0 %28x86%29</ProductName> + <Install>true</Install> + </BootstrapperPackage> + <BootstrapperPackage Include="Microsoft.Net.Framework.3.0"> + <Visible>False</Visible> + <ProductName>.NET Framework 3.0 %28x86%29</ProductName> + <Install>false</Install> + </BootstrapperPackage> + <BootstrapperPackage Include="Microsoft.Net.Framework.3.5"> + <Visible>False</Visible> + <ProductName>.NET Framework 3.5</ProductName> + <Install>false</Install> + </BootstrapperPackage> + <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> + <Visible>False</Visible> + <ProductName>.NET Framework 3.5 SP1</ProductName> + <Install>false</Install> + </BootstrapperPackage> + </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ira Transceiver/Ira Transceiver.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ira Transceiver/Ira Transceiver.csproj 2010-12-04 08:43:11 UTC (rev 3999) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ira Transceiver/Ira Transceiver.csproj 2010-12-04 08:45:42 UTC (rev 4000) @@ -10,6 +10,8 @@ <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Ira Transceiver</AssemblyName> <ApplicationIcon>Icon.ico</ApplicationIcon> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -36,7 +38,7 @@ <UseVSHostingProcess>false</UseVSHostingProcess> <DebugSymbols>false</DebugSymbols> </PropertyGroup> - <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> <PlatformTarget>x86</PlatformTarget> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> @@ -61,6 +63,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> @@ -104,7 +109,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/Tira Transceiver/Properties/AssemblyInfo.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/Properties/AssemblyInfo.cs 2010-12-04 08:43:11 UTC (rev 3999) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/Properties/AssemblyInfo.cs 2010-12-04 08:45:42 UTC (rev 4000) @@ -20,6 +20,7 @@ using System; using System.Reflection; +using System.Security.Permissions; // // General Information about an assembly is controlled through the following 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 2010-12-04 08:43:11 UTC (rev 3999) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Tira Transceiver/Tira Transceiver.csproj 2010-12-04 08:45:42 UTC (rev 4000) @@ -10,6 +10,8 @@ <RootNamespace>IRServer.Plugin</RootNamespace> <AssemblyName>Tira Transceiver</AssemblyName> <ApplicationIcon>Icon.ico</ApplicationIcon> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> @@ -61,6 +63,9 @@ </PropertyGroup> <ItemGroup> <Reference Include="System" /> + <Reference Include="System.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> @@ -117,7 +122,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 Suite.sln =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.sln 2010-12-04 08:43:11 UTC (rev 3999) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Suite.sln 2010-12-04 08:45:42 UTC (rev 4000) @@ -129,6 +129,20 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IRServer.Shared", "IR Server\IRServer.Shared\IRServer.Shared.csproj", "{0C6A59C2-B5CC-48EF-A41F-0F1E463D8391}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestApp", "Commands\TestApp\TestApp.csproj", "{A86517F4-BBCF-4D56-B0CA-C9E36AFAC550}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandProcessor", "Commands\CommandProcessor\CommandProcessor.csproj", "{49CF376E-811C-4EB4-817F-A39C9529B608}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "disabled", "disabled", "{6AA1F598-03AD-427F-AA58-A0D967D42D4B}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "disabled", "disabled", "{EAE43789-D389-4EE3-AAB7-843135F877B0}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "disabled", "disabled", "{6E178F04-C237-4292-A964-4D3C935EB035}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ira Transceiver", "IR Server Plugins\Ira Transceiver\Ira Transceiver.csproj", "{0E045E97-EEB2-461C-A416-CFC8E452E044}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tira Transceiver", "IR Server Plugins\Tira Transceiver\Tira Transceiver.csproj", "{6137C390-DDB0-44B0-8ED5-51B45C0D4404}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|x86 = Debug|x86 @@ -136,9 +150,7 @@ EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Debug|x86.ActiveCfg = Debug|x86 - {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Debug|x86.Build.0 = Debug|x86 {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Release|x86.ActiveCfg = Release|x86 - {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A}.Release|x86.Build.0 = Release|x86 {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Debug|x86.ActiveCfg = Debug|x86 {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Debug|x86.Build.0 = Debug|x86 {4CD051F4-F2B5-47B3-8647-F47C2E4DC131}.Release|x86.ActiveCfg = Release|x86 @@ -371,12 +383,19 @@ {0C6A59C2-B5CC-48EF-A41F-0F1E463D8391}.Debug|x86.Build.0 = Debug|x86 {0C6A59C2-B5CC-48EF-A41F-0F1E463D8391}.Release|x86.ActiveCfg = Release|x86 {0C6A59C2-B5CC-48EF-A41F-0F1E463D8391}.Release|x86.Build.0 = Release|x86 + {A86517F4-BBCF-4D56-B0CA-C9E36AFAC550}.Debug|x86.ActiveCfg = Debug|Any CPU + {A86517F4-BBCF-4D56-B0CA-C9E36AFAC550}.Release|x86.ActiveCfg = Release|Any CPU + {49CF376E-811C-4EB4-817F-A39C9529B608}.Debug|x86.ActiveCfg = Debug|Any CPU + {49CF376E-811C-4EB4-817F-A39C9529B608}.Release|x86.ActiveCfg = Release|Any CPU + {0E045E97-EEB2-461C-A416-CFC8E452E044}.Debug|x86.ActiveCfg = Debug|x86 + {0E045E97-EEB2-461C-A416-CFC8E452E044}.Release|x86.ActiveCfg = Release|x86 + {6137C390-DDB0-44B0-8ED5-51B45C0D4404}.Debug|x86.ActiveCfg = Debug|x86 + {6137C390-DDB0-44B0-8ED5-51B45C0D4404}.Release|x86.ActiveCfg = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A} = {0C209E91-5AD5-4662-AD0E-976A940D4806} {4CD051F4-F2B5-47B3-8647-F47C2E4DC131} = {0C209E91-5AD5-4662-AD0E-976A940D4806} {A8B8B9C6-9E88-486B-AE9C-F2D945ED05A6} = {0C209E91-5AD5-4662-AD0E-976A940D4806} {46C08F6B-F3C8-461B-9B6F-3BFD4AAAFD63} = {0C209E91-5AD5-4662-AD0E-976A940D4806} @@ -393,6 +412,7 @@ {097F7027-77A1-4623-8D6C-3D2020769EFD} = {0C209E91-5AD5-4662-AD0E-976A940D4806} {58BFF250-541B-4AA4-A62D-ACB819AD317B} = {0C209E91-5AD5-4662-AD0E-976A940D4806} {349D0A5D-BF1F-4E3E-AF92-5A3D54AD1EB4} = {0C209E91-5AD5-4662-AD0E-976A940D4806} + {EAE43789-D389-4EE3-AAB7-843135F877B0} = {0C209E91-5AD5-4662-AD0E-976A940D4806} {7C686499-7517-4338-8837-7E8617549D9A} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} {BABC30EB-7D0F-4398-9FCB-E517EA8D2AA9} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} {99B5CA78-3E0B-477F-A7D3-EE1B65E85DE4} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} @@ -423,6 +443,7 @@ {EC37743A-64B2-472A-9EB6-CB052AD2B35C} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} {EBFA0F67-1EB6-4282-8475-C397B9852B3F} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} {D88EDBC1-D583-4149-9873-8239FA63F4FE} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} + {6E178F04-C237-4292-A964-4D3C935EB035} = {0D1620EE-01B9-43B5-9FAA-E983BD9EBDBD} {CA15769C-232E-4CA7-94FD-206A06CA3ABB} = {E757F80C-23C5-4AD6-B178-16799E337E03} {BCAFDF45-70DD-46FD-8B98-880DDA585AD2} = {E757F80C-23C5-4AD6-B178-16799E337E03} {28923F6E-8A68-4BC8-A507-825B09C3F64E} = {E757F80C-23C5-4AD6-B178-16799E337E03} @@ -435,6 +456,12 @@ {21E04B17-D850-43E7-AAD3-876C0E062BDB} = {F0D3A774-FE5E-4419-B9B6-C11FF1C4BB50} {106A69D2-670C-4DE5-A81C-A3CD5D3F21EB} = {F0D3A774-FE5E-4419-B9B6-C11FF1C4BB50} {D1BAC7A9-FFB6-44BA-825F-32506831DC3D} = {F0D3A774-FE5E-4419-B9B6-C11FF1C4BB50} + {6AA1F598-03AD-427F-AA58-A0D967D42D4B} = {F0D3A774-FE5E-4419-B9B6-C11FF1C4BB50} + {49CF376E-811C-4EB4-817F-A39C9529B608} = {6AA1F598-03AD-427F-AA58-A0D967D42D4B} + {A86517F4-BBCF-4D56-B0CA-C9E36AFAC550} = {6AA1F598-03AD-427F-AA58-A0D967D42D4B} + {0C894165-4BE8-4CF7-8F92-2B6DF68EB43A} = {EAE43789-D389-4EE3-AAB7-843135F877B0} + {6137C390-DDB0-44B0-8ED5-51B45C0D4404} = {6E178F04-C237-4292-A964-4D3C935EB035} + {0E045E97-EEB2-461C-A416-CFC8E452E044} = {6E178F04-C237-4292-A964-4D3C935EB035} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution VisualSVNWorkingCopyRoot = .. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2010-12-18 02:28:11
|
Revision: 4043 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4043&view=rev Author: chef_koch Date: 2010-12-18 02:28:02 +0000 (Sat, 18 Dec 2010) Log Message: ----------- using native Keyboard and Mouse class from IrssUtils in MCE, Imon and Wii projects, instead of their own implementation (with same, duplicated code) Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Keyboard.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs 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/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.csproj Removed Paths: ------------- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Keyboard.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Mouse.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Keyboard.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Mouse.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Mouse.cs Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Keyboard.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Keyboard.cs 2010-12-17 16:59:14 UTC (rev 4042) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Keyboard.cs 2010-12-18 02:28:02 UTC (rev 4043) @@ -22,6 +22,7 @@ using System; using System.Runtime.InteropServices; +using System.Text; using System.Threading; using IrssUtils.Exceptions; @@ -104,6 +105,68 @@ /// </summary> private const string PrefixVK = "VK_"; + #region Imported from MCE Transceiver's 'native Keyboard handler (Keyboard.cs) + + /// <summary> + /// English (Australia). + /// </summary> + public const string English_AU = "00000c09"; + + /// <summary> + /// English (Great Britain). + /// </summary> + public const string English_GB = "00000809"; + + /// <summary> + /// English (US). + /// </summary> + public const string English_US = "00000409"; + + /// <summary> + /// French (France). + /// </summary> + public const string French_FR = "0000040c"; + + /// <summary> + /// German (Austria). + /// </summary> + public const string German_AT = "00000c07"; + + /// <summary> + /// German (Germany). + /// </summary> + public const string German_DE = "00000407"; + + /// <summary> + /// Japanese (Japan). + /// </summary> + public const string Japanese_JP = "00000411"; + + /// <summary> + /// Spanish (Spain). + /// </summary> + public const string Spanish_ES = "00000c0a"; + + + private const int KL_NAMELENGTH = 9; + + private const uint KLF_ACTIVATE = 0x0001; + //private const uint KLF_NOTELLSHELL = 0x0080; + private const uint KLF_REORDER = 0x0008; + //private const uint KLF_REPLACELANG = 0x0010; + //const uint KLF_RESET = 0x40000000; + private const uint KLF_SETFORPROCESS = 0x0100; + //const uint KLF_SHIFTLOCK = 0x10000; + private const uint KLF_SUBSTITUTE_OK = 0x0002; + //private const uint KLF_UNLOADPREVIOUS = 0x0004; + + + //private const int MAPVK_SCAN_TO_VK = 1; + private const int MAPVK_VK_TO_CHAR = 2; + //private const int MAPVK_VK_TO_SCAN = 0; + + #endregion + #endregion Constants #region Interop @@ -124,6 +187,33 @@ uint code, uint mapType); + #region Imported from MCE Transceiver's 'native Keyboard handler (Keyboard.cs) + + [DllImport("user32.dll")] + private static extern long GetKeyboardLayoutName( + StringBuilder pwszKLID); + + [DllImport("user32.dll")] + private static extern int ActivateKeyboardLayout( + IntPtr nkl, + uint Flags); + + [DllImport("user32.dll")] + private static extern uint GetKeyboardLayoutList( + int nBuff, + [Out] IntPtr[] lpList); + + [DllImport("user32.dll")] + private static extern IntPtr LoadKeyboardLayout( + string pwszKLID, + uint Flags); + + [DllImport("user32.dll")] + private static extern bool UnloadKeyboardLayout( + IntPtr hkl); + + #endregion + #endregion Interop #region Enumerations @@ -1227,6 +1317,83 @@ if (winKey) KeyUp(VKey.VK_LWIN); } + #region Imported from MCE Transceiver's 'native Keyboard handler (Keyboard.cs) + + /// <summary> + /// Gets the character that maps to the Virtual Key provided. + /// </summary> + /// <param name="vKey">The virtual key.</param> + /// <returns>The character.</returns> + public static char GetCharFromVKey(VKey vKey) + { + return (char)MapVirtualKey((uint)vKey, MAPVK_VK_TO_CHAR); + } + + /// <summary> + /// Gets the current keyboard layout. + /// </summary> + /// <returns>The name of the current keyboard layout.</returns> + public static string GetLayout() + { + StringBuilder name = new StringBuilder(KL_NAMELENGTH); + GetKeyboardLayoutName(name); + return name.ToString(); + } + + /// <summary> + /// Loads the specified keyboard layout. + /// </summary> + /// <param name="layout">The keyboard layout to load.</param> + /// <returns>Identifier for removing this keyboard layout.</returns> + public static IntPtr LoadLayout(string layout) + { + return LoadKeyboardLayout(layout, KLF_ACTIVATE | KLF_REORDER | KLF_SETFORPROCESS | KLF_SUBSTITUTE_OK); + } + + /// <summary> + /// Unloads the already loaded layout. + /// </summary> + /// <param name="layout">The layout to unload.</param> + /// <returns><c>true</c> if successful, otherwise <c>false</c>.</returns> + public static bool UnloadLayout(IntPtr layout) + { + return UnloadKeyboardLayout(layout); + } + + /* + /// <summary> + /// Simulate a key being pressed down. + /// </summary> + /// <param name="vKey">Virtual key to press.</param> + public static void KeyDown(VKey vKey) + { + keybd_event((byte)vKey, 0, (uint)KeyEvents.KeyDown, IntPtr.Zero); + } + + /// <summary> + /// Simulate a key being released. + /// </summary> + /// <param name="vKey">Virtual key to release.</param> + public static void KeyUp(VKey vKey) + { + keybd_event((byte)vKey, 0, (uint)KeyEvents.KeyUp, IntPtr.Zero); + } + */ + + /// <summary> + /// Simulate a Virtual Key event. + /// </summary> + /// <param name="vKey">Virtual Key.</param> + /// <param name="scan">Scan code.</param> + /// <param name="flags">Event type.</param> + /// <param name="extraInfo">Pointer to additional information.</param> + public static void Event(VKey vKey, byte scan, KeyEvents flags, IntPtr extraInfo) + { + keybd_event((byte)vKey, scan, (uint)flags, extraInfo); + } + + #endregion + #endregion Public Methods } } \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs 2010-12-17 16:59:14 UTC (rev 4042) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.cs 2010-12-18 02:28:02 UTC (rev 4043) @@ -32,6 +32,7 @@ using System.Windows.Forms; using System.Xml; using IRServer.Plugin.Properties; +using IrssUtils; using Microsoft.Win32; using Microsoft.Win32.SafeHandles; 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-17 16:59:14 UTC (rev 4042) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Imon USB Receivers.csproj 2010-12-18 02:28:02 UTC (rev 4043) @@ -76,8 +76,6 @@ </Compile> <Compile Include="Debug.cs" /> <Compile Include="FileIO.cs" /> - <Compile Include="Keyboard.cs" /> - <Compile Include="Mouse.cs" /> <Compile Include="PluginBaseInterfaces.cs" /> <Compile Include="Imon USB Receivers.cs" /> <Compile Include="Properties\Resources.Designer.cs"> @@ -90,6 +88,10 @@ <Compile Include="TestApplication.cs" /> </ItemGroup> <ItemGroup> + <ProjectReference Include="..\..\Common\IrssUtils\IrssUtils.csproj"> + <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> + <Name>IrssUtils</Name> + </ProjectReference> <ProjectReference Include="..\IR Server Plugin Interface\IR Server Plugin Interface.csproj"> <Project>{D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}</Project> <Name>IR Server Plugin Interface</Name> Deleted: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Keyboard.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Keyboard.cs 2010-12-17 16:59:14 UTC (rev 4042) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Keyboard.cs 2010-12-18 02:28:02 UTC (rev 4043) @@ -1,250 +0,0 @@ -#region Copyright (C) 2005-2009 Team MediaPortal - -// Copyright (C) 2005-2009 Team MediaPortal -// http://www.team-mediaportal.com -// -// This Program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2, or (at your option) -// any later version. -// -// This Program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with GNU Make; see the file COPYING. If not, write to -// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -// http://www.gnu.org/copyleft/gpl.html - -#endregion - -using System; -using System.Runtime.InteropServices; - -namespace IRServer.Plugin -{ - /// <summary> - /// Win32 native method wrapper for Keyboard control functions. - /// </summary> - internal static class Keyboard - { - #region Interop - - [DllImport("user32.dll")] - private static extern void keybd_event( - byte bVk, - byte bScan, - uint dwFlags, - IntPtr dwExtraInfo); - - #endregion Interop - - #region Enumerations - - #region KeyEvents enum - - /// <summary> - /// Key Event Types. - /// </summary> - [Flags] - public enum KeyEvents - { - KeyDown = 0x00, - ExtendedKey = 0x01, - KeyUp = 0x02, - Unicode = 0x04, - ScanCode = 0x08, - } - - #endregion - - #region VKey enum - - /// <summary> - /// Virtual Key Codes. - /// </summary> - public enum VKey - { - None = 0, - VK_0 = 0x30, - VK_1 = 0x31, - VK_2 = 0x32, - VK_3 = 0x33, - VK_4 = 0x34, - VK_5 = 0x35, - VK_6 = 0x36, - VK_7 = 0x37, - VK_8 = 0x38, - VK_9 = 0x39, - VK_A = 0x41, - VK_B = 0x42, - VK_C = 0x43, - VK_D = 0x44, - VK_E = 0x45, - VK_F = 0x46, - VK_G = 0x47, - VK_H = 0x48, - VK_I = 0x49, - VK_J = 0x4A, - VK_K = 0x4B, - VK_L = 0x4C, - VK_M = 0x4D, - VK_N = 0x4E, - VK_O = 0x4F, - VK_P = 0x50, - VK_Q = 0x51, - VK_R = 0x52, - VK_S = 0x53, - VK_T = 0x54, - VK_U = 0x55, - VK_V = 0x56, - VK_W = 0x57, - VK_X = 0x58, - VK_Y = 0x59, - VK_Z = 0x5A, - VK_ADD = 0x6B, - VK_APPS = 0x5D, - VK_ATTN = 0xF6, - VK_BACK = 0x8, - VK_CANCEL = 0x3, - VK_CAPITAL = 0x14, - VK_CLEAR = 0xC, - VK_CONTROL = 0x11, - VK_CRSEL = 0xF7, - VK_DECIMAL = 0x6E, - VK_DELETE = 0x2E, - VK_DIVIDE = 0x6F, - VK_DOWN = 0x28, - VK_END = 0x23, - VK_EREOF = 0xF9, - VK_ESCAPE = 0x1B, - VK_EXECUTE = 0x2B, - VK_EXSEL = 0xF8, - VK_F1 = 0x70, - VK_F2 = 0x71, - VK_F3 = 0x72, - VK_F4 = 0x73, - VK_F5 = 0x74, - VK_F6 = 0x75, - VK_F7 = 0x76, - VK_F8 = 0x77, - VK_F9 = 0x78, - VK_F10 = 0x79, - VK_F11 = 0x7A, - VK_F12 = 0x7B, - VK_F13 = 0x7C, - VK_F14 = 0x7D, - VK_F15 = 0x7E, - VK_F16 = 0x7F, - VK_F17 = 0x80, - VK_F18 = 0x81, - VK_F19 = 0x82, - VK_F20 = 0x83, - VK_F21 = 0x84, - VK_F22 = 0x85, - VK_F23 = 0x86, - VK_F24 = 0x87, - VK_HELP = 0x2F, - VK_HOME = 0x24, - VK_INSERT = 0x2D, - VK_LBUTTON = 0x1, - VK_LCONTROL = 0xA2, - VK_LEFT = 0x25, - VK_LMENU = 0xA4, - VK_LSHIFT = 0xA0, - VK_LWIN = 0x5B, - VK_MBUTTON = 0x4, - VK_MENU = 0x12, - VK_MULTIPLY = 0x6A, - VK_NEXT = 0x22, - VK_NONAME = 0xFC, - VK_NUMLOCK = 0x90, - VK_NUMPAD0 = 0x60, - VK_NUMPAD1 = 0x61, - VK_NUMPAD2 = 0x62, - VK_NUMPAD3 = 0x63, - VK_NUMPAD4 = 0x64, - VK_NUMPAD5 = 0x65, - VK_NUMPAD6 = 0x66, - VK_NUMPAD7 = 0x67, - VK_NUMPAD8 = 0x68, - VK_NUMPAD9 = 0x69, - VK_OEM_1 = 0xBA, // ";:" - VK_OEM_2 = 0xBF, // "/?" - VK_OEM_3 = 0xC0, // "`~" for US - VK_OEM_4 = 0xDB, // "[{" for US - VK_OEM_5 = 0xDC, // "\|" for US - VK_OEM_6 = 0xDD, // "]}" for US - VK_OEM_7 = 0xDE, // "'"" for US - VK_OEM_102 = 0xE2, - VK_OEM_CLEAR = 0xFE, - VK_OEM_COMMA = 0xBC, - VK_OEM_MINUS = 0xBD, - VK_OEM_PERIOD = 0xBE, - VK_OEM_PLUS = 0xBB, // "+=" - VK_PA1 = 0xFD, - VK_PAUSE = 0x13, - VK_PLAY = 0xFA, - VK_PRINT = 0x2A, - VK_PRIOR = 0x21, - VK_PROCESSKEY = 0xE5, - VK_RBUTTON = 0x2, - VK_RCONTROL = 0xA3, - VK_RETURN = 0xD, - VK_RIGHT = 0x27, - VK_RMENU = 0xA5, - VK_RSHIFT = 0xA1, - VK_RWIN = 0x5C, - VK_SCROLL = 0x91, - VK_SELECT = 0x29, - VK_SEPARATOR = 0x6C, - VK_SHIFT = 0x10, - VK_SNAPSHOT = 0x2C, - VK_SPACE = 0x20, - VK_SUBTRACT = 0x6D, - VK_TAB = 0x9, - VK_UP = 0x26, - VK_ZOOM = 0xFB, - } - - #endregion - - #endregion Enumerations - - #region Public Methods - - /// <summary> - /// Simulate a key being pressed down. - /// </summary> - /// <param name="vKey">Virtual key to press.</param> - public static void KeyDown(VKey vKey) - { - keybd_event((byte) vKey, 0, (uint) KeyEvents.KeyDown, IntPtr.Zero); - } - - /// <summary> - /// Simulate a key being released. - /// </summary> - /// <param name="vKey">Virtual key to release.</param> - public static void KeyUp(VKey vKey) - { - keybd_event((byte) vKey, 0, (uint) KeyEvents.KeyUp, IntPtr.Zero); - } - - /// <summary> - /// Simulate a Virtual Key event. - /// </summary> - /// <param name="vKey">Virtual Key.</param> - /// <param name="scan">Scan code.</param> - /// <param name="flags">Event type.</param> - /// <param name="extraInfo">Pointer to additional information.</param> - public static void Event(VKey vKey, byte scan, KeyEvents flags, IntPtr extraInfo) - { - keybd_event((byte) vKey, scan, (uint) flags, extraInfo); - } - - #endregion Public Methods - } -} \ No newline at end of file Deleted: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Mouse.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Mouse.cs 2010-12-17 16:59:14 UTC (rev 4042) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Imon USB Receivers/Mouse.cs 2010-12-18 02:28:02 UTC (rev 4043) @@ -1,163 +0,0 @@ -#region Copyright (C) 2005-2009 Team MediaPortal - -// Copyright (C) 2005-2009 Team MediaPortal -// http://www.team-mediaportal.com -// -// This Program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2, or (at your option) -// any later version. -// -// This Program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with GNU Make; see the file COPYING. If not, write to -// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -// http://www.gnu.org/copyleft/gpl.html - -#endregion - -using System; -using System.Runtime.InteropServices; -using System.Windows.Forms; - -namespace IRServer.Plugin -{ - /// <summary> - /// Win32 native method wrapper for Mouse control functions. - /// </summary> - internal static class Mouse - { - #region Interop - - [DllImport("user32")] - private static extern void mouse_event(int dwFlags, int dx, int dy, int dwData, IntPtr dwExtraInfo); - - #endregion Interop - - #region Enumerations - - #region MouseEvents enum - - /// <summary> - /// Used to simulate mouse actions. - /// </summary> - [Flags] - public enum MouseEvents - { - /// <summary> - /// No Event. - /// </summary> - None = 0x0000, - /// <summary> - /// Move. - /// </summary> - Move = 0x0001, - /// <summary> - /// Left Button Down. - /// </summary> - LeftDown = 0x0002, - /// <summary> - /// Left Button Up. - /// </summary> - LeftUp = 0x0004, - /// <summary> - /// Right Button Down. - /// </summary> - RightDown = 0x0008, - /// <summary> - /// Right Button Up. - /// </summary> - RightUp = 0x0010, - /// <summary> - /// Middle Button Down. - /// </summary> - MiddleDown = 0x0020, - /// <summary> - /// Middle Button Up. - /// </summary> - MiddleUp = 0x0040, - /// <summary> - /// Scroll. - /// </summary> - Scroll = 0x0800, - /// <summary> - /// Position Absolute. - /// </summary> - Absolute = 0x8000 - } - - #endregion - - #region ScrollDir enum - - /// <summary> - /// Used to simulate mouse wheel scrolling. - /// </summary> - public enum ScrollDir - { - /// <summary> - /// No Scroll. - /// </summary> - None = 0, - /// <summary> - /// Scroll Up. - /// </summary> - Up = 120, - /// <summary> - /// Scroll Down. - /// </summary> - Down = -120 - } - - #endregion - - #endregion Enumerations - - #region Public Methods - - /// <summary> - /// Simulates mouse button actions. - /// </summary> - /// <param name="flags">The button action to simulate.</param> - public static void Button(MouseEvents flags) - { - mouse_event((int) flags, 0, 0, 0, IntPtr.Zero); - } - - /// <summary> - /// Simulate mouse movements. - /// </summary> - /// <param name="dx">Movement on the X axis.</param> - /// <param name="dy">Movement on the Y axis.</param> - /// <param name="absolute">If true, dx and dy are taken as absolute position. If false, dx and dy are taken as relative to the current position.</param> - public static void Move(int dx, int dy, bool absolute) - { - if (absolute) - { - int x = dx * 65536 / Screen.PrimaryScreen.Bounds.Width; - int y = dy * 65536 / Screen.PrimaryScreen.Bounds.Height; - - mouse_event((int) (MouseEvents.Move | MouseEvents.Absolute), x, y, 0, IntPtr.Zero); - } - else - { - mouse_event((int) (MouseEvents.Move), dx, dy, 0, IntPtr.Zero); - } - } - - /// <summary> - /// Simulates mouse wheel scrolling. - /// </summary> - /// <param name="direction">The direction to scroll.</param> - public static void Scroll(ScrollDir direction) - { - mouse_event((int) MouseEvents.Scroll, 0, 0, (int) direction, IntPtr.Zero); - } - - #endregion Public Methods - } -} \ No newline at end of file Deleted: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Keyboard.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Keyboard.cs 2010-12-17 16:59:14 UTC (rev 4042) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Keyboard.cs 2010-12-18 02:28:02 UTC (rev 4043) @@ -1,383 +0,0 @@ -#region Copyright (C) 2005-2009 Team MediaPortal - -// Copyright (C) 2005-2009 Team MediaPortal -// http://www.team-mediaportal.com -// -// This Program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2, or (at your option) -// any later version. -// -// This Program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with GNU Make; see the file COPYING. If not, write to -// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -// http://www.gnu.org/copyleft/gpl.html - -#endregion - -using System; -using System.Runtime.InteropServices; -using System.Text; - -namespace IRServer.Plugin -{ - /// <summary> - /// Win32 native method wrapper for Keyboard control functions. - /// </summary> - internal static class Keyboard - { - #region Constants - - /// <summary> - /// English (Australia). - /// </summary> - public const string English_AU = "00000c09"; - - /// <summary> - /// English (Great Britain). - /// </summary> - public const string English_GB = "00000809"; - - /// <summary> - /// English (US). - /// </summary> - public const string English_US = "00000409"; - - /// <summary> - /// French (France). - /// </summary> - public const string French_FR = "0000040c"; - - /// <summary> - /// German (Austria). - /// </summary> - public const string German_AT = "00000c07"; - - /// <summary> - /// German (Germany). - /// </summary> - public const string German_DE = "00000407"; - - /// <summary> - /// Japanese (Japan). - /// </summary> - public const string Japanese_JP = "00000411"; - - private const int KL_NAMELENGTH = 9; - - private const uint KLF_ACTIVATE = 0x0001; - //private const uint KLF_NOTELLSHELL = 0x0080; - private const uint KLF_REORDER = 0x0008; - //private const uint KLF_REPLACELANG = 0x0010; - //const uint KLF_RESET = 0x40000000; - private const uint KLF_SETFORPROCESS = 0x0100; - //const uint KLF_SHIFTLOCK = 0x10000; - private const uint KLF_SUBSTITUTE_OK = 0x0002; - //private const uint KLF_UNLOADPREVIOUS = 0x0004; - - - //private const int MAPVK_SCAN_TO_VK = 1; - private const int MAPVK_VK_TO_CHAR = 2; - //private const int MAPVK_VK_TO_SCAN = 0; - - - /// <summary> - /// Spanish (Spain). - /// </summary> - public const string Spanish_ES = "00000c0a"; - - #endregion Constants - - #region Interop - - [DllImport("user32.dll")] - private static extern void keybd_event( - byte bVk, - byte bScan, - uint dwFlags, - IntPtr dwExtraInfo); - - [DllImport("user32.dll")] - private static extern long GetKeyboardLayoutName( - StringBuilder pwszKLID); - - [DllImport("user32.dll")] - private static extern int ActivateKeyboardLayout( - IntPtr nkl, - uint Flags); - - [DllImport("user32.dll")] - private static extern uint GetKeyboardLayoutList( - int nBuff, - [Out] IntPtr[] lpList); - - [DllImport("user32.dll")] - private static extern IntPtr LoadKeyboardLayout( - string pwszKLID, - uint Flags); - - [DllImport("user32.dll")] - private static extern bool UnloadKeyboardLayout( - IntPtr hkl); - - [DllImport("user32.dll")] - private static extern uint MapVirtualKey( - uint uCode, - uint uMapType); - - #endregion Interop - - #region Enumerations - - #region KeyEvents enum - - /// <summary> - /// Key Event Types. - /// </summary> - [Flags] - public enum KeyEvents - { - KeyDown = 0x00, - ExtendedKey = 0x01, - KeyUp = 0x02, - Unicode = 0x04, - ScanCode = 0x08, - } - - #endregion - - #region VKey enum - - /// <summary> - /// Virtual Key Codes. - /// </summary> - public enum VKey - { - None = 0, - VK_0 = 0x30, - VK_1 = 0x31, - VK_2 = 0x32, - VK_3 = 0x33, - VK_4 = 0x34, - VK_5 = 0x35, - VK_6 = 0x36, - VK_7 = 0x37, - VK_8 = 0x38, - VK_9 = 0x39, - VK_A = 0x41, - VK_B = 0x42, - VK_C = 0x43, - VK_D = 0x44, - VK_E = 0x45, - VK_F = 0x46, - VK_G = 0x47, - VK_H = 0x48, - VK_I = 0x49, - VK_J = 0x4A, - VK_K = 0x4B, - VK_L = 0x4C, - VK_M = 0x4D, - VK_N = 0x4E, - VK_O = 0x4F, - VK_P = 0x50, - VK_Q = 0x51, - VK_R = 0x52, - VK_S = 0x53, - VK_T = 0x54, - VK_U = 0x55, - VK_V = 0x56, - VK_W = 0x57, - VK_X = 0x58, - VK_Y = 0x59, - VK_Z = 0x5A, - VK_ADD = 0x6B, - VK_APPS = 0x5D, - VK_ATTN = 0xF6, - VK_BACK = 0x8, - VK_CANCEL = 0x3, - VK_CAPITAL = 0x14, - VK_CLEAR = 0xC, - VK_CONTROL = 0x11, - VK_CRSEL = 0xF7, - VK_DECIMAL = 0x6E, - VK_DELETE = 0x2E, - VK_DIVIDE = 0x6F, - VK_DOWN = 0x28, - VK_END = 0x23, - VK_EREOF = 0xF9, - VK_ESCAPE = 0x1B, - VK_EXECUTE = 0x2B, - VK_EXSEL = 0xF8, - VK_F1 = 0x70, - VK_F2 = 0x71, - VK_F3 = 0x72, - VK_F4 = 0x73, - VK_F5 = 0x74, - VK_F6 = 0x75, - VK_F7 = 0x76, - VK_F8 = 0x77, - VK_F9 = 0x78, - VK_F10 = 0x79, - VK_F11 = 0x7A, - VK_F12 = 0x7B, - VK_F13 = 0x7C, - VK_F14 = 0x7D, - VK_F15 = 0x7E, - VK_F16 = 0x7F, - VK_F17 = 0x80, - VK_F18 = 0x81, - VK_F19 = 0x82, - VK_F20 = 0x83, - VK_F21 = 0x84, - VK_F22 = 0x85, - VK_F23 = 0x86, - VK_F24 = 0x87, - VK_HELP = 0x2F, - VK_HOME = 0x24, - VK_INSERT = 0x2D, - VK_LBUTTON = 0x1, - VK_LCONTROL = 0xA2, - VK_LEFT = 0x25, - VK_LMENU = 0xA4, - VK_LSHIFT = 0xA0, - VK_LWIN = 0x5B, - VK_MBUTTON = 0x4, - VK_MENU = 0x12, - VK_MULTIPLY = 0x6A, - VK_NEXT = 0x22, - VK_NONAME = 0xFC, - VK_NUMLOCK = 0x90, - VK_NUMPAD0 = 0x60, - VK_NUMPAD1 = 0x61, - VK_NUMPAD2 = 0x62, - VK_NUMPAD3 = 0x63, - VK_NUMPAD4 = 0x64, - VK_NUMPAD5 = 0x65, - VK_NUMPAD6 = 0x66, - VK_NUMPAD7 = 0x67, - VK_NUMPAD8 = 0x68, - VK_NUMPAD9 = 0x69, - VK_OEM_1 = 0xBA, // ";:" - VK_OEM_2 = 0xBF, // "/?" - VK_OEM_3 = 0xC0, // "`~" for US - VK_OEM_4 = 0xDB, // "[{" for US - VK_OEM_5 = 0xDC, // "\|" for US - VK_OEM_6 = 0xDD, // "]}" for US - VK_OEM_7 = 0xDE, // "'"" for US - VK_OEM_102 = 0xE2, - VK_OEM_CLEAR = 0xFE, - VK_OEM_COMMA = 0xBC, - VK_OEM_MINUS = 0xBD, - VK_OEM_PERIOD = 0xBE, - VK_OEM_PLUS = 0xBB, // "+=" - VK_PA1 = 0xFD, - VK_PAUSE = 0x13, - VK_PLAY = 0xFA, - VK_PRINT = 0x2A, - VK_PRIOR = 0x21, - VK_PROCESSKEY = 0xE5, - VK_RBUTTON = 0x2, - VK_RCONTROL = 0xA3, - VK_RETURN = 0xD, - VK_RIGHT = 0x27, - VK_RMENU = 0xA5, - VK_RSHIFT = 0xA1, - VK_RWIN = 0x5C, - VK_SCROLL = 0x91, - VK_SELECT = 0x29, - VK_SEPARATOR = 0x6C, - VK_SHIFT = 0x10, - VK_SNAPSHOT = 0x2C, - VK_SPACE = 0x20, - VK_SUBTRACT = 0x6D, - VK_TAB = 0x9, - VK_UP = 0x26, - VK_ZOOM = 0xFB, - } - - #endregion - - #endregion Enumerations - - #region Public Methods - - /// <summary> - /// Gets the character that maps to the Virtual Key provided. - /// </summary> - /// <param name="vKey">The virtual key.</param> - /// <returns>The character.</returns> - public static char GetCharFromVKey(VKey vKey) - { - return (char) MapVirtualKey((uint) vKey, MAPVK_VK_TO_CHAR); - } - - /// <summary> - /// Gets the current keyboard layout. - /// </summary> - /// <returns>The name of the current keyboard layout.</returns> - public static string GetLayout() - { - StringBuilder name = new StringBuilder(KL_NAMELENGTH); - GetKeyboardLayoutName(name); - return name.ToString(); - } - - /// <summary> - /// Loads the specified keyboard layout. - /// </summary> - /// <param name="layout">The keyboard layout to load.</param> - /// <returns>Identifier for removing this keyboard layout.</returns> - public static IntPtr LoadLayout(string layout) - { - return LoadKeyboardLayout(layout, KLF_ACTIVATE | KLF_REORDER | KLF_SETFORPROCESS | KLF_SUBSTITUTE_OK); - } - - /// <summary> - /// Unloads the already loaded layout. - /// </summary> - /// <param name="layout">The layout to unload.</param> - /// <returns><c>true</c> if successful, otherwise <c>false</c>.</returns> - public static bool UnloadLayout(IntPtr layout) - { - return UnloadKeyboardLayout(layout); - } - - - /// <summary> - /// Simulate a key being pressed down. - /// </summary> - /// <param name="vKey">Virtual key to press.</param> - public static void KeyDown(VKey vKey) - { - keybd_event((byte) vKey, 0, (uint) KeyEvents.KeyDown, IntPtr.Zero); - } - - /// <summary> - /// Simulate a key being released. - /// </summary> - /// <param name="vKey">Virtual key to release.</param> - public static void KeyUp(VKey vKey) - { - keybd_event((byte) vKey, 0, (uint) KeyEvents.KeyUp, IntPtr.Zero); - } - - /// <summary> - /// Simulate a Virtual Key event. - /// </summary> - /// <param name="vKey">Virtual Key.</param> - /// <param name="scan">Scan code.</param> - /// <param name="flags">Event type.</param> - /// <param name="extraInfo">Pointer to additional information.</param> - public static void Event(VKey vKey, byte scan, KeyEvents flags, IntPtr extraInfo) - { - keybd_event((byte) vKey, scan, (uint) flags, extraInfo); - } - - #endregion Public Methods - } -} \ 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-17 16:59:14 UTC (rev 4042) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Microsoft MCE Transceiver.csproj 2010-12-18 02:28:02 UTC (rev 4043) @@ -88,11 +88,9 @@ <Compile Include="DriverVista.cs" /> <Compile Include="DriverXP.cs" /> <Compile Include="IrDecoder.cs" /> - <Compile Include="Keyboard.cs" /> <Compile Include="MceDetectionData.cs" /> <Compile Include="IrCode.cs" /> <Compile Include="MicrosoftMceTransceiver.cs" /> - <Compile Include="Mouse.cs" /> <Compile Include="NotifyWindow.cs" /> <Compile Include="Pronto.cs" /> <Compile Include="Properties\Resources.Designer.cs"> Deleted: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Mouse.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Mouse.cs 2010-12-17 16:59:14 UTC (rev 4042) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Microsoft MCE Transceiver/Mouse.cs 2010-12-18 02:28:02 UTC (rev 4043) @@ -1,163 +0,0 @@ -#region Copyright (C) 2005-2009 Team MediaPortal - -// Copyright (C) 2005-2009 Team MediaPortal -// http://www.team-mediaportal.com -// -// This Program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2, or (at your option) -// any later version. -// -// This Program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with GNU Make; see the file COPYING. If not, write to -// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -// http://www.gnu.org/copyleft/gpl.html - -#endregion - -using System; -using System.Runtime.InteropServices; -using System.Windows.Forms; - -namespace IRServer.Plugin -{ - /// <summary> - /// Win32 native method wrapper for Mouse control functions. - /// </summary> - internal static class Mouse - { - #region Interop - - [DllImport("user32")] - private static extern void mouse_event(int dwFlags, int dx, int dy, int dwData, IntPtr dwExtraInfo); - - #endregion Interop - - #region Enumerations - - #region MouseEvents enum - - /// <summary> - /// Used to simulate mouse actions. - /// </summary> - [Flags] - public enum MouseEvents - { - /// <summary> - /// No Event. - /// </summary> - None = 0x0000, - /// <summary> - /// Move. - /// </summary> - Move = 0x0001, - /// <summary> - /// Left Button Down. - /// </summary> - LeftDown = 0x0002, - /// <summary> - /// Left Button Up. - /// </summary> - LeftUp = 0x0004, - /// <summary> - /// Right Button Down. - /// </summary> - RightDown = 0x0008, - /// <summary> - /// Right Button Up. - /// </summary> - RightUp = 0x0010, - /// <summary> - /// Middle Button Down. - /// </summary> - MiddleDown = 0x0020, - /// <summary> - /// Middle Button Up. - /// </summary> - MiddleUp = 0x0040, - /// <summary> - /// Scroll. - /// </summary> - Scroll = 0x0800, - /// <summary> - /// Position Absolute. - /// </summary> - Absolute = 0x8000 - } - - #endregion - - #region ScrollDir enum - - /// <summary> - /// Used to simulate mouse wheel scrolling. - /// </summary> - public enum ScrollDir - { - /// <summary> - /// No Scroll. - /// </summary> - None = 0, - /// <summary> - /// Scroll Up. - /// </summary> - Up = 120, - /// <summary> - /// Scroll Down. - /// </summary> - Down = -120 - } - - #endregion - - #endregion Enumerations - - #region Public Methods - - /// <summary> - /// Simulates mouse button actions. - /// </summary> - /// <param name="flags">The button action to simulate.</param> - public static void Button(MouseEvents flags) - { - mouse_event((int) flags, 0, 0, 0, IntPtr.Zero); - } - - /// <summary> - /// Simulate mouse movements. - /// </summary> - /// <param name="dx">Movement on the X axis.</param> - /// <param name="dy">Movement on the Y axis.</param> - /// <param name="absolute">If true, dx and dy are taken as absolute position. If false, dx and dy are taken as relative to the current position.</param> - public static void Move(int dx, int dy, bool absolute) - { - if (absolute) - { - int x = dx * 65536 / Screen.PrimaryScreen.Bounds.Width; - int y = dy * 65536 / Screen.PrimaryScreen.Bounds.Height; - - mouse_event((int) (MouseEvents.Move | MouseEvents.Absolute), x, y, 0, IntPtr.Zero); - } - else - { - mouse_event((int) (MouseEvents.Move), dx, dy, 0, IntPtr.Zero); - } - } - - /// <summary> - /// Simulates mouse wheel scrolling. - /// </summary> - /// <param name="direction">The direction to scroll.</param> - public static void Scroll(ScrollDir direction) - { - mouse_event((int) MouseEvents.Scroll, 0, 0, (int) direction, IntPtr.Zero); - } - - #endregion Public Methods - } -} \ No newline at end of file Deleted: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Mouse.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Mouse.cs 2010-12-17 16:59:14 UTC (rev 4042) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Mouse.cs 2010-12-18 02:28:02 UTC (rev 4043) @@ -1,168 +0,0 @@ -#region Copyright (C) 2005-2009 Team MediaPortal - -// Copyright (C) 2005-2009 Team MediaPortal -// http://www.team-mediaportal.com -// -// This Program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2, or (at your option) -// any later version. -// -// This Program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with GNU Make; see the file COPYING. If not, write to -// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. -// http://www.gnu.org/copyleft/gpl.html - -#endregion - -using System; -using System.Runtime.InteropServices; -using System.Windows.Forms; - -namespace IRServer.Plugin -{ - /// <summary> - /// Win32 native method wrapper for Mouse control functions. - /// </summary> - internal static class Mouse - { - #region Interop - - [DllImport("user32")] - private static extern void mouse_event(int dwFlags, int dx, int dy, int dwData, IntPtr dwExtraInfo); - - #endregion Interop - - #region Enumerations - - #region MouseEvents enum - - /// <summary> - /// Used to simulate mouse actions. - /// </summary> - [Flags] - public enum MouseEvents - { - /// <summary> - /// No Event. - /// </summary> - None = 0x0000, - /// <summary> - /// Move. - /// </summary> - Move = 0x0001, - /// <summary> - /// Left Button Down. - /// </summary> - LeftDown = 0x0002, - /// <summary> - /// Left Button Up. - /// </summary> - LeftUp = 0x0004, - /// <summary> - /// Right Button Down. - /// </summary> - RightDown = 0x0008, - /// <summary> - /// Right Button Up. - /// </summary> - RightUp = 0x0010, - /// <summary> - /// Middle Button Down. - /// </summary> - MiddleDown = 0x0020, - /// <summary> - /// Middle Button Up. - /// </summary> - MiddleUp = 0x0040, - /// <summary> - /// Scroll. - /// </summary> - Scroll = 0x0800, - /// <summary> - /// Position Absolute. - /// </summary> - Absolute = 0x8000 - } - - #endregion - - #region ScrollDir enum - - /// <summary> - /// Used to simulate mouse wheel scrolling. - /// </summary> - public enum ScrollDir - { - /// <summary> - /// No Scroll. - /// </summary> - None = 0, - /// <summary> - /// Scroll Up. - /// </summary> - Up = 120, - /// <summary> - /// Scroll Down. - /// </summary> - Down = -120 - } - - #endregion - - #endregion Enumerations - - #region Public Methods - - /// <summary> - /// Simulates mouse button actions. - /// </summary> - /// <param name="flags">The button action to simulate.</param> - public static void Button(MouseEvents flags) - { - mouse_event((int) flags, 0, 0, 0, IntPtr.Zero); - } - - /// <summary> - /// Simulate mouse movements. - /// </summary> - /// <param name="dx">Movement on the X axis.</param> - /// <param name="dy">Movement on the Y axis.</param> - /// <param name="absolute">If true, dx and dy are taken as absolute position. If false, dx and dy are taken as relative to the current position.</param> - public static void Move(int dx, int dy, bool absolute) - { - //if (absolute) - //Cursor.Position = new Point(dx, dy); - //else - //Cursor.Position = new Point(Curson.Position.X + dx, Cursor.Position.Y + dy); - - if (absolute) - { - int x = dx * 65536 / Screen.PrimaryScreen.Bounds.Width; - int y = dy * 65536 / Screen.PrimaryScreen.Bounds.Height; - - mouse_event((int) (MouseEvents.Move | MouseEvents.Absolute), x, y, 0, IntPtr.Zero); - } - else - { - mouse_event((int) (MouseEvents.Move), dx, dy, 0, IntPtr.Zero); - } - } - - /// <summary> - /// Simulates mouse wheel scrolling. - /// </summary> - /// <param name="direction">The direction to scroll.</param> - public static void Scroll(ScrollDir direction) - { - mouse_event((int) MouseEvents.Scroll, 0, 0, (int) direction, IntPtr.Zero); - } - - #endregion Public Methods - } -} \ No newline at end of file Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.cs 2010-12-17 16:59:14 UTC (rev 4042) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.cs 2010-12-18 02:28:02 UTC (rev 4043) @@ -30,6 +30,7 @@ using System.Windows.Forms; using System.Xml; using IRServer.Plugin.Properties; +using IrssUtils; using WiimoteLib; namespace IRServer.Plugin 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-17 16:59:14 UTC (rev 4042) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Wii Remote Receiver/Wii Remote Receiver.csproj 2010-12-18 02:28:02 UTC (rev 4043) @@ -70,7 +70,6 @@ <Link>Properties\SolutionInfo.cs</Link> </Compile> <Compile Include="Properties\AssemblyInfo.cs" /> - <Compile Include="Mouse.cs" /> <Compile Include="Properties\Resources.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> @@ -85,6 +84,10 @@ <Compile Include="Wii Remote Receiver.cs" /> </ItemGroup> <ItemGroup> + <ProjectReference Include="..\..\Common\IrssUtils\IrssUtils.csproj"> + <Project>{CA15769C-232E-4CA7-94FD-206A06CA3ABB}</Project> + <Name>IrssUtils</Name> + </ProjectReference> <ProjectReference Include="..\IR Server Plugin Interface\IR Server Plugin Interface.csproj"> <Project>{D8B3D28F-62CE-4CA7-86CE-B7EAD614A94C}</Project> <Name>IR Server Plugin Interface</Name> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <che...@us...> - 2011-02-20 22:08:01
|
Revision: 4129 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4129&view=rev Author: chemelli_sf Date: 2011-02-20 22:07:51 +0000 (Sun, 20 Feb 2011) Log Message: ----------- Switched solution to VS2010 Modified Paths: -------------- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Abstractor.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Virtual Remote Skin Editor.csproj trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Web Remote.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/CommandProcessor.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/TestApp.csproj trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/RemoteTable.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration/IR Server Configuration.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Configuration/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray/IR Server Tray.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server Tray/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IRServer.Shared/IRServer.Shared.csproj 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/IR Server Plugin Interface/IR Server Plugin Interface.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/IR501 Receiver/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ira Transceiver/Ira Transceiver.csproj trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/Ira Transceiver/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs trunk/plugins/IR Server Suite/IR Server Suite/IR Server Plugins/RC102 Receiver/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/USB-UIRT Transceiver/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/WinLirc Transceiver/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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/Properties/Resources.Designer.cs 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 Suite.sln Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Abstractor.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Abstractor.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Abstractor/Abstractor.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -15,7 +16,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Dbox Tuner/Dbox Tuner.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -15,7 +16,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Debug Client/Debug Client.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -16,7 +17,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/HCW PVR Tuner/HCW PVR Tuner.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -14,7 +15,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <ApplicationManifest>HcwPvrTuner.exe.manifest</ApplicationManifest> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast/IR Blast.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -17,7 +18,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR Blast (No Window)/IR Blast (No Window).csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -17,7 +18,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/IR File Tool/IR File Tool.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -16,7 +17,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Keyboard Input Relay.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -15,7 +16,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <ApplicationManifest>KeyboardInputRelay.exe.manifest</ApplicationManifest> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/Resources.Designer.cs 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Keyboard Input Relay/Properties/Resources.Designer.cs 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. -// Runtime Version:2.0.50727.832 +// Runtime Version:4.0.30319.1 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -19,7 +19,7 @@ // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/LogTimeCodeExtractor/LogTimeCodeExtractor.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -13,7 +14,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/MacroScope/MacroScope.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -15,7 +16,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Media Center Blaster.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -16,7 +17,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/Resources.Designer.cs 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Media Center Blaster/Properties/Resources.Designer.cs 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,15 +1,14 @@ //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. -// Runtime Version:2.0.50727.42 +// Runtime Version:4.0.30319.1 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ -namespace MediaCenterBlaster.Properties -{ +namespace MediaCenterBlaster.Properties { using System; @@ -20,7 +19,7 @@ // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -40,7 +39,7 @@ internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MediaCenterBlaster.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MediaCenterBlaster.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/SageSetup/Sage Setup.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -16,7 +17,7 @@ <DelaySign>false</DelaySign> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <ApplicationManifest>SageSetup.exe.manifest</ApplicationManifest> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/Resources.Designer.cs 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Properties/Resources.Designer.cs 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // <auto-generated> -// Dieser Code wurde von einem Tool generiert. -// Laufzeitversion:2.0.50727.4927 +// This code was generated by a tool. +// Runtime Version:4.0.30319.1 // -// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn -// der Code erneut generiert wird. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ @@ -13,13 +13,13 @@ /// <summary> - /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// A strongly-typed resource class, for looking up localized strings, etc. /// </summary> - // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert - // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. - // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen - // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { @@ -33,7 +33,7 @@ } /// <summary> - /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// Returns the cached ResourceManager instance used by this class. /// </summary> [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ } /// <summary> - /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle - /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. /// </summary> [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Translator/Translator.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -16,7 +17,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/Resources.Designer.cs 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Properties/Resources.Designer.cs 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. -// Runtime Version:2.0.50727.832 +// Runtime Version:4.0.30319.1 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -19,7 +19,7 @@ // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Tray Launcher/Tray Launcher.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -16,7 +17,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote/Virtual Remote.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -16,9 +17,10 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>false</DebugSymbols> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Virtual Remote Skin Editor.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Virtual Remote Skin Editor.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Virtual Remote Skin Editor/Virtual Remote Skin Editor.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -16,9 +17,10 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/Resources.Designer.cs 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Properties/Resources.Designer.cs 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. -// Runtime Version:2.0.50727.832 +// Runtime Version:4.0.30319.1 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -19,7 +19,7 @@ // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { Modified: trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Web Remote.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Web Remote.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Applications/Web Remote/Web Remote.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -15,9 +16,10 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> + <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/Command/Command.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -14,7 +15,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/CommandProcessor.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/CommandProcessor.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/CommandProcessor.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -16,7 +17,7 @@ </FileUpgradeFlags> <UpgradeBackupLocation> </UpgradeBackupLocation> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <PublishUrl>publish\</PublishUrl> <Install>true</Install> <InstallFrom>Disk</InstallFrom> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/Resources.Designer.cs 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/CommandProcessor/Properties/Resources.Designer.cs 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. -// Runtime Version:2.0.50727.4952 +// Runtime Version:4.0.30319.1 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -19,7 +19,7 @@ // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/GeneralCommands/GeneralCommands.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -14,7 +15,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/TestApp.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/TestApp.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/TestApp/TestApp.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -13,7 +14,7 @@ </FileUpgradeFlags> <UpgradeBackupLocation> </UpgradeBackupLocation> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> <PublishUrl>publish\</PublishUrl> <Install>true</Install> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Commands/VariableList/VariableList.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -14,7 +15,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssComms/IrssComms.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -19,7 +20,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssScheduler/IrssScheduler.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -13,7 +14,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/IrssUtils.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -17,7 +18,7 @@ <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> <FileUpgradeFlags> </FileUpgradeFlags> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <UpgradeBackupLocation> </UpgradeBackupLocation> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.Designer.cs =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.Designer.cs 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/IrssUtils/Properties/Resources.Designer.cs 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // <auto-generated> -// Dieser Code wurde von einem Tool generiert. -// Laufzeitversion:2.0.50727.4927 +// This code was generated by a tool. +// Runtime Version:4.0.30319.1 // -// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn -// der Code erneut generiert wird. +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ @@ -13,13 +13,13 @@ /// <summary> - /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// A strongly-typed resource class, for looking up localized strings, etc. /// </summary> - // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert - // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. - // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen - // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] public class Resources { @@ -33,7 +33,7 @@ } /// <summary> - /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// Returns the cached ResourceManager instance used by this class. /// </summary> [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ } /// <summary> - /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle - /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. /// </summary> [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] public static global::System.Globalization.CultureInfo Culture { Modified: trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/Common/ShellLink/ShellLink.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <ProjectType>Local</ProjectType> <ProductVersion>9.0.30729</ProductVersion> @@ -27,7 +28,7 @@ </UpgradeBackupLocation> <SignAssembly>false</SignAssembly> <AssemblyOriginatorKeyFile>..\..\IR Server Suite.snk</AssemblyOriginatorKeyFile> - <OldToolsVersion>2.0</OldToolsVersion> + <OldToolsVersion>3.5</OldToolsVersion> <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> Modified: trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj =================================================================== --- trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj 2011-02-20 18:06:15 UTC (rev 4128) +++ trunk/plugins/IR Server Suite/IR Server Suite/IR Server/IR Server/IR Server.csproj 2011-02-20 22:07:51 UTC (rev 4129) @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> @@ -16,7... [truncated message content] |