# HG changeset patch # User StephaneLenclud # Date 1471123614 -7200 # Node ID 5a739e2e52556dd0aff4369b3ae0eded06458b2f # Parent 4c706feaf7060eba847ea0538dacb95b06de9017 Published v0.11.0.0. diff -r 4c706feaf706 -r 5a739e2e5255 Clients/Idle/SharpDisplayClientIdle.csproj --- a/Clients/Idle/SharpDisplayClientIdle.csproj Fri Aug 12 20:25:05 2016 +0200 +++ b/Clients/Idle/SharpDisplayClientIdle.csproj Sat Aug 13 23:26:54 2016 +0200 @@ -45,6 +45,26 @@ true + + true + bin\x86\Debug\ + DEBUG;TRACE + full + x86 + prompt + MinimumRecommendedRules.ruleset + true + + + bin\x86\Release\ + TRACE + true + pdbonly + x86 + prompt + MinimumRecommendedRules.ruleset + true + ..\..\packages\SharpLibDisplay.0.2.5\lib\net40\SharpLibDisplay.dll diff -r 4c706feaf706 -r 5a739e2e5255 Clients/Message/SharpDisplayClientMessage.csproj --- a/Clients/Message/SharpDisplayClientMessage.csproj Fri Aug 12 20:25:05 2016 +0200 +++ b/Clients/Message/SharpDisplayClientMessage.csproj Sat Aug 13 23:26:54 2016 +0200 @@ -44,6 +44,26 @@ true + + true + bin\x86\Debug\ + DEBUG;TRACE + full + x86 + prompt + MinimumRecommendedRules.ruleset + true + + + bin\x86\Release\ + TRACE + true + pdbonly + x86 + prompt + MinimumRecommendedRules.ruleset + true + ..\..\packages\SharpLibDisplay.0.2.5\lib\net40\SharpLibDisplay.dll diff -r 4c706feaf706 -r 5a739e2e5255 Server/FormMain.cs --- a/Server/FormMain.cs Fri Aug 12 20:25:05 2016 +0200 +++ b/Server/FormMain.cs Sat Aug 13 23:26:54 2016 +0200 @@ -141,12 +141,12 @@ public FormMain() { - ManagerEventAction.Current = Properties.Settings.Default.Actions; + ManagerEventAction.Current = Properties.Settings.Default.Events; if (ManagerEventAction.Current == null) { //No actions in our settings yet ManagerEventAction.Current = new ManagerEventAction(); - Properties.Settings.Default.Actions = ManagerEventAction.Current; + Properties.Settings.Default.Events = ManagerEventAction.Current; } else { @@ -2813,7 +2813,7 @@ if (res == DialogResult.OK) { selectedEvent.Actions.Add(ea.Object); - Properties.Settings.Default.Actions = ManagerEventAction.Current; + Properties.Settings.Default.Events = ManagerEventAction.Current; Properties.Settings.Default.Save(); PopulateEventsTreeView(); } @@ -2844,7 +2844,7 @@ //Update our action selectedEvent.Actions[actionIndex]=ea.Object; //Save and rebuild our event tree view - Properties.Settings.Default.Actions = ManagerEventAction.Current; + Properties.Settings.Default.Events = ManagerEventAction.Current; Properties.Settings.Default.Save(); PopulateEventsTreeView(); } @@ -2866,7 +2866,7 @@ } ManagerEventAction.Current.RemoveAction(action); - Properties.Settings.Default.Actions = ManagerEventAction.Current; + Properties.Settings.Default.Events = ManagerEventAction.Current; Properties.Settings.Default.Save(); PopulateEventsTreeView(); } @@ -2910,7 +2910,7 @@ currentEvent.Actions[currentIndex-1] = movingUp; //Save and populate our tree again - Properties.Settings.Default.Actions = ManagerEventAction.Current; + Properties.Settings.Default.Events = ManagerEventAction.Current; Properties.Settings.Default.Save(); PopulateEventsTreeView(); @@ -2940,7 +2940,7 @@ currentEvent.Actions[currentIndex + 1] = movingDown; //Save and populate our tree again - Properties.Settings.Default.Actions = ManagerEventAction.Current; + Properties.Settings.Default.Events = ManagerEventAction.Current; Properties.Settings.Default.Save(); PopulateEventsTreeView(); } @@ -3011,7 +3011,7 @@ if (res == DialogResult.OK) { ManagerEventAction.Current.Events.Add(ea.Object); - Properties.Settings.Default.Actions = ManagerEventAction.Current; + Properties.Settings.Default.Events = ManagerEventAction.Current; Properties.Settings.Default.Save(); PopulateEventsTreeView(); SelectEvent(ea.Object); @@ -3028,7 +3028,7 @@ } ManagerEventAction.Current.Events.Remove(currentEvent); - Properties.Settings.Default.Actions = ManagerEventAction.Current; + Properties.Settings.Default.Events = ManagerEventAction.Current; Properties.Settings.Default.Save(); PopulateEventsTreeView(); } @@ -3050,7 +3050,7 @@ if (res == DialogResult.OK) { //Save and rebuild our event tree view - Properties.Settings.Default.Actions = ManagerEventAction.Current; + Properties.Settings.Default.Events = ManagerEventAction.Current; Properties.Settings.Default.Save(); PopulateEventsTreeView(); } diff -r 4c706feaf706 -r 5a739e2e5255 Server/Properties/Settings.Designer.cs --- a/Server/Properties/Settings.Designer.cs Fri Aug 12 20:25:05 2016 +0200 +++ b/Server/Properties/Settings.Designer.cs Sat Aug 13 23:26:54 2016 +0200 @@ -156,12 +156,12 @@ [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - public global::SharpLib.Ear.ManagerEventAction Actions { + public global::SharpLib.Ear.ManagerEventAction Events { get { - return ((global::SharpLib.Ear.ManagerEventAction)(this["Actions"])); + return ((global::SharpLib.Ear.ManagerEventAction)(this["Events"])); } set { - this["Actions"] = value; + this["Events"] = value; } } } diff -r 4c706feaf706 -r 5a739e2e5255 Server/Properties/Settings.settings --- a/Server/Properties/Settings.settings Fri Aug 12 20:25:05 2016 +0200 +++ b/Server/Properties/Settings.settings Sat Aug 13 23:26:54 2016 +0200 @@ -35,7 +35,7 @@ True - + diff -r 4c706feaf706 -r 5a739e2e5255 Server/SharpDisplayManager.csproj --- a/Server/SharpDisplayManager.csproj Fri Aug 12 20:25:05 2016 +0200 +++ b/Server/SharpDisplayManager.csproj Sat Aug 13 23:26:54 2016 +0200 @@ -34,7 +34,7 @@ index.htm false 0 - 0.10.2.0 + 0.11.0.0 false true true diff -r 4c706feaf706 -r 5a739e2e5255 SharpDisplayManager.sln --- a/SharpDisplayManager.sln Fri Aug 12 20:25:05 2016 +0200 +++ b/SharpDisplayManager.sln Sat Aug 13 23:26:54 2016 +0200 @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 -VisualStudioVersion = 14.0.25123.0 +VisualStudioVersion = 14.0.24720.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpDisplayManager", "Server\SharpDisplayManager.csproj", "{1DA8C1B3-18C5-4E74-BE4E-0B0E15FBAF49}" EndProject @@ -67,8 +67,8 @@ {A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|Any CPU.Build.0 = Release|Any CPU {A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x64.ActiveCfg = Release|Any CPU {A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x64.Build.0 = Release|Any CPU - {A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x86.ActiveCfg = Release|Any CPU - {A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x86.Build.0 = Release|Any CPU + {A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x86.ActiveCfg = Release|x86 + {A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x86.Build.0 = Release|x86 {7EE64074-8CDB-4448-B40C-81B75D6B31CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {7EE64074-8CDB-4448-B40C-81B75D6B31CD}.Debug|Any CPU.Build.0 = Debug|Any CPU {7EE64074-8CDB-4448-B40C-81B75D6B31CD}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -91,8 +91,8 @@ {AE897704-461D-4018-8336-2517988BF7AD}.Release|Any CPU.Build.0 = Release|Any CPU {AE897704-461D-4018-8336-2517988BF7AD}.Release|x64.ActiveCfg = Release|Any CPU {AE897704-461D-4018-8336-2517988BF7AD}.Release|x64.Build.0 = Release|Any CPU - {AE897704-461D-4018-8336-2517988BF7AD}.Release|x86.ActiveCfg = Release|Any CPU - {AE897704-461D-4018-8336-2517988BF7AD}.Release|x86.Build.0 = Release|Any CPU + {AE897704-461D-4018-8336-2517988BF7AD}.Release|x86.ActiveCfg = Release|x86 + {AE897704-461D-4018-8336-2517988BF7AD}.Release|x86.Build.0 = Release|x86 {84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Debug|Any CPU.Build.0 = Debug|Any CPU {84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -103,8 +103,8 @@ {84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|Any CPU.Build.0 = Release|Any CPU {84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x64.ActiveCfg = Release|Any CPU {84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x64.Build.0 = Release|Any CPU - {84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x86.ActiveCfg = Release|Any CPU - {84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x86.Build.0 = Release|Any CPU + {84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x86.ActiveCfg = Release|x86 + {84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x86.Build.0 = Release|x86 {D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Debug|Any CPU.Build.0 = Debug|Any CPU {D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -115,8 +115,8 @@ {D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|Any CPU.Build.0 = Release|Any CPU {D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x64.ActiveCfg = Release|Any CPU {D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x64.Build.0 = Release|Any CPU - {D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x86.ActiveCfg = Release|Any CPU - {D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x86.Build.0 = Release|Any CPU + {D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x86.ActiveCfg = Release|x86 + {D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff -r 4c706feaf706 -r 5a739e2e5255 SharpLibEar/SharpLibEar.csproj --- a/SharpLibEar/SharpLibEar.csproj Fri Aug 12 20:25:05 2016 +0200 +++ b/SharpLibEar/SharpLibEar.csproj Sat Aug 13 23:26:54 2016 +0200 @@ -29,6 +29,24 @@ prompt 4 + + true + bin\x86\Debug\ + DEBUG;TRACE + full + x86 + prompt + MinimumRecommendedRules.ruleset + + + bin\x86\Release\ + TRACE + true + pdbonly + x86 + prompt + MinimumRecommendedRules.ruleset + diff -r 4c706feaf706 -r 5a739e2e5255 SharpLibUtils/Reflection.cs --- a/SharpLibUtils/Reflection.cs Fri Aug 12 20:25:05 2016 +0200 +++ b/SharpLibUtils/Reflection.cs Sat Aug 13 23:26:54 2016 +0200 @@ -3,7 +3,6 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -using System.Linq; using System.Reflection; diff -r 4c706feaf706 -r 5a739e2e5255 SharpLibUtils/SharpLibUtils.csproj --- a/SharpLibUtils/SharpLibUtils.csproj Fri Aug 12 20:25:05 2016 +0200 +++ b/SharpLibUtils/SharpLibUtils.csproj Sat Aug 13 23:26:54 2016 +0200 @@ -29,6 +29,24 @@ prompt 4 + + true + bin\x86\Debug\ + DEBUG;TRACE + full + x86 + prompt + MinimumRecommendedRules.ruleset + + + bin\x86\Release\ + TRACE + true + pdbonly + x86 + prompt + MinimumRecommendedRules.ruleset +