Published v0.11.0.0.
authorStephaneLenclud
Sat, 13 Aug 2016 23:26:54 +0200
changeset 2325a739e2e5255
parent 231 4c706feaf706
child 233 2b9541e54f7d
Published v0.11.0.0.
Clients/Idle/SharpDisplayClientIdle.csproj
Clients/Message/SharpDisplayClientMessage.csproj
Server/FormMain.cs
Server/Properties/Settings.Designer.cs
Server/Properties/Settings.settings
Server/SharpDisplayManager.csproj
SharpDisplayManager.sln
SharpLibEar/SharpLibEar.csproj
SharpLibUtils/Reflection.cs
SharpLibUtils/SharpLibUtils.csproj
     1.1 --- a/Clients/Idle/SharpDisplayClientIdle.csproj	Fri Aug 12 20:25:05 2016 +0200
     1.2 +++ b/Clients/Idle/SharpDisplayClientIdle.csproj	Sat Aug 13 23:26:54 2016 +0200
     1.3 @@ -45,6 +45,26 @@
     1.4    <PropertyGroup>
     1.5      <NoWin32Manifest>true</NoWin32Manifest>
     1.6    </PropertyGroup>
     1.7 +  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
     1.8 +    <DebugSymbols>true</DebugSymbols>
     1.9 +    <OutputPath>bin\x86\Debug\</OutputPath>
    1.10 +    <DefineConstants>DEBUG;TRACE</DefineConstants>
    1.11 +    <DebugType>full</DebugType>
    1.12 +    <PlatformTarget>x86</PlatformTarget>
    1.13 +    <ErrorReport>prompt</ErrorReport>
    1.14 +    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
    1.15 +    <Prefer32Bit>true</Prefer32Bit>
    1.16 +  </PropertyGroup>
    1.17 +  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
    1.18 +    <OutputPath>bin\x86\Release\</OutputPath>
    1.19 +    <DefineConstants>TRACE</DefineConstants>
    1.20 +    <Optimize>true</Optimize>
    1.21 +    <DebugType>pdbonly</DebugType>
    1.22 +    <PlatformTarget>x86</PlatformTarget>
    1.23 +    <ErrorReport>prompt</ErrorReport>
    1.24 +    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
    1.25 +    <Prefer32Bit>true</Prefer32Bit>
    1.26 +  </PropertyGroup>
    1.27    <ItemGroup>
    1.28      <Reference Include="SharpLibDisplay, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
    1.29        <HintPath>..\..\packages\SharpLibDisplay.0.2.5\lib\net40\SharpLibDisplay.dll</HintPath>
     2.1 --- a/Clients/Message/SharpDisplayClientMessage.csproj	Fri Aug 12 20:25:05 2016 +0200
     2.2 +++ b/Clients/Message/SharpDisplayClientMessage.csproj	Sat Aug 13 23:26:54 2016 +0200
     2.3 @@ -44,6 +44,26 @@
     2.4    <PropertyGroup>
     2.5      <NoWin32Manifest>true</NoWin32Manifest>
     2.6    </PropertyGroup>
     2.7 +  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
     2.8 +    <DebugSymbols>true</DebugSymbols>
     2.9 +    <OutputPath>bin\x86\Debug\</OutputPath>
    2.10 +    <DefineConstants>DEBUG;TRACE</DefineConstants>
    2.11 +    <DebugType>full</DebugType>
    2.12 +    <PlatformTarget>x86</PlatformTarget>
    2.13 +    <ErrorReport>prompt</ErrorReport>
    2.14 +    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
    2.15 +    <Prefer32Bit>true</Prefer32Bit>
    2.16 +  </PropertyGroup>
    2.17 +  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
    2.18 +    <OutputPath>bin\x86\Release\</OutputPath>
    2.19 +    <DefineConstants>TRACE</DefineConstants>
    2.20 +    <Optimize>true</Optimize>
    2.21 +    <DebugType>pdbonly</DebugType>
    2.22 +    <PlatformTarget>x86</PlatformTarget>
    2.23 +    <ErrorReport>prompt</ErrorReport>
    2.24 +    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
    2.25 +    <Prefer32Bit>true</Prefer32Bit>
    2.26 +  </PropertyGroup>
    2.27    <ItemGroup>
    2.28      <Reference Include="SharpLibDisplay, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
    2.29        <HintPath>..\..\packages\SharpLibDisplay.0.2.5\lib\net40\SharpLibDisplay.dll</HintPath>
     3.1 --- a/Server/FormMain.cs	Fri Aug 12 20:25:05 2016 +0200
     3.2 +++ b/Server/FormMain.cs	Sat Aug 13 23:26:54 2016 +0200
     3.3 @@ -141,12 +141,12 @@
     3.4  
     3.5          public FormMain()
     3.6          {
     3.7 -            ManagerEventAction.Current = Properties.Settings.Default.Actions;
     3.8 +            ManagerEventAction.Current = Properties.Settings.Default.Events;
     3.9              if (ManagerEventAction.Current == null)
    3.10              {
    3.11                  //No actions in our settings yet
    3.12                  ManagerEventAction.Current = new ManagerEventAction();
    3.13 -                Properties.Settings.Default.Actions = ManagerEventAction.Current;
    3.14 +                Properties.Settings.Default.Events = ManagerEventAction.Current;
    3.15              }
    3.16              else
    3.17              {
    3.18 @@ -2813,7 +2813,7 @@
    3.19              if (res == DialogResult.OK)
    3.20              {
    3.21                  selectedEvent.Actions.Add(ea.Object);
    3.22 -                Properties.Settings.Default.Actions = ManagerEventAction.Current;
    3.23 +                Properties.Settings.Default.Events = ManagerEventAction.Current;
    3.24                  Properties.Settings.Default.Save();
    3.25                  PopulateEventsTreeView();
    3.26              }
    3.27 @@ -2844,7 +2844,7 @@
    3.28                  //Update our action
    3.29                  selectedEvent.Actions[actionIndex]=ea.Object;
    3.30                  //Save and rebuild our event tree view
    3.31 -                Properties.Settings.Default.Actions = ManagerEventAction.Current;
    3.32 +                Properties.Settings.Default.Events = ManagerEventAction.Current;
    3.33                  Properties.Settings.Default.Save();
    3.34                  PopulateEventsTreeView();
    3.35              }
    3.36 @@ -2866,7 +2866,7 @@
    3.37              }
    3.38  
    3.39              ManagerEventAction.Current.RemoveAction(action);
    3.40 -            Properties.Settings.Default.Actions = ManagerEventAction.Current;
    3.41 +            Properties.Settings.Default.Events = ManagerEventAction.Current;
    3.42              Properties.Settings.Default.Save();
    3.43              PopulateEventsTreeView();
    3.44          }
    3.45 @@ -2910,7 +2910,7 @@
    3.46              currentEvent.Actions[currentIndex-1] = movingUp;
    3.47  
    3.48              //Save and populate our tree again
    3.49 -            Properties.Settings.Default.Actions = ManagerEventAction.Current;
    3.50 +            Properties.Settings.Default.Events = ManagerEventAction.Current;
    3.51              Properties.Settings.Default.Save();
    3.52              PopulateEventsTreeView();
    3.53  
    3.54 @@ -2940,7 +2940,7 @@
    3.55              currentEvent.Actions[currentIndex + 1] = movingDown;
    3.56  
    3.57              //Save and populate our tree again
    3.58 -            Properties.Settings.Default.Actions = ManagerEventAction.Current;
    3.59 +            Properties.Settings.Default.Events = ManagerEventAction.Current;
    3.60              Properties.Settings.Default.Save();
    3.61              PopulateEventsTreeView();
    3.62          }
    3.63 @@ -3011,7 +3011,7 @@
    3.64              if (res == DialogResult.OK)
    3.65              {
    3.66                  ManagerEventAction.Current.Events.Add(ea.Object);
    3.67 -                Properties.Settings.Default.Actions = ManagerEventAction.Current;
    3.68 +                Properties.Settings.Default.Events = ManagerEventAction.Current;
    3.69                  Properties.Settings.Default.Save();
    3.70                  PopulateEventsTreeView();
    3.71                  SelectEvent(ea.Object);
    3.72 @@ -3028,7 +3028,7 @@
    3.73              }
    3.74  
    3.75              ManagerEventAction.Current.Events.Remove(currentEvent);
    3.76 -            Properties.Settings.Default.Actions = ManagerEventAction.Current;
    3.77 +            Properties.Settings.Default.Events = ManagerEventAction.Current;
    3.78              Properties.Settings.Default.Save();
    3.79              PopulateEventsTreeView();
    3.80          }
    3.81 @@ -3050,7 +3050,7 @@
    3.82              if (res == DialogResult.OK)
    3.83              {
    3.84                  //Save and rebuild our event tree view
    3.85 -                Properties.Settings.Default.Actions = ManagerEventAction.Current;
    3.86 +                Properties.Settings.Default.Events = ManagerEventAction.Current;
    3.87                  Properties.Settings.Default.Save();
    3.88                  PopulateEventsTreeView();
    3.89              }
     4.1 --- a/Server/Properties/Settings.Designer.cs	Fri Aug 12 20:25:05 2016 +0200
     4.2 +++ b/Server/Properties/Settings.Designer.cs	Sat Aug 13 23:26:54 2016 +0200
     4.3 @@ -156,12 +156,12 @@
     4.4          
     4.5          [global::System.Configuration.UserScopedSettingAttribute()]
     4.6          [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
     4.7 -        public global::SharpLib.Ear.ManagerEventAction Actions {
     4.8 +        public global::SharpLib.Ear.ManagerEventAction Events {
     4.9              get {
    4.10 -                return ((global::SharpLib.Ear.ManagerEventAction)(this["Actions"]));
    4.11 +                return ((global::SharpLib.Ear.ManagerEventAction)(this["Events"]));
    4.12              }
    4.13              set {
    4.14 -                this["Actions"] = value;
    4.15 +                this["Events"] = value;
    4.16              }
    4.17          }
    4.18      }
     5.1 --- a/Server/Properties/Settings.settings	Fri Aug 12 20:25:05 2016 +0200
     5.2 +++ b/Server/Properties/Settings.settings	Sat Aug 13 23:26:54 2016 +0200
     5.3 @@ -35,7 +35,7 @@
     5.4      <Setting Name="StartIdleClient" Type="System.Boolean" Scope="User">
     5.5        <Value Profile="(Default)">True</Value>
     5.6      </Setting>
     5.7 -    <Setting Name="Actions" Type="SharpLib.Ear.ManagerEventAction" Scope="User">
     5.8 +    <Setting Name="Events" Type="SharpLib.Ear.ManagerEventAction" Scope="User">
     5.9        <Value Profile="(Default)" />
    5.10      </Setting>
    5.11    </Settings>
     6.1 --- a/Server/SharpDisplayManager.csproj	Fri Aug 12 20:25:05 2016 +0200
     6.2 +++ b/Server/SharpDisplayManager.csproj	Sat Aug 13 23:26:54 2016 +0200
     6.3 @@ -34,7 +34,7 @@
     6.4      <WebPage>index.htm</WebPage>
     6.5      <OpenBrowserOnPublish>false</OpenBrowserOnPublish>
     6.6      <ApplicationRevision>0</ApplicationRevision>
     6.7 -    <ApplicationVersion>0.10.2.0</ApplicationVersion>
     6.8 +    <ApplicationVersion>0.11.0.0</ApplicationVersion>
     6.9      <UseApplicationTrust>false</UseApplicationTrust>
    6.10      <CreateDesktopShortcut>true</CreateDesktopShortcut>
    6.11      <PublishWizardCompleted>true</PublishWizardCompleted>
     7.1 --- a/SharpDisplayManager.sln	Fri Aug 12 20:25:05 2016 +0200
     7.2 +++ b/SharpDisplayManager.sln	Sat Aug 13 23:26:54 2016 +0200
     7.3 @@ -1,7 +1,7 @@
     7.4  
     7.5  Microsoft Visual Studio Solution File, Format Version 12.00
     7.6  # Visual Studio 14
     7.7 -VisualStudioVersion = 14.0.25123.0
     7.8 +VisualStudioVersion = 14.0.24720.0
     7.9  MinimumVisualStudioVersion = 10.0.40219.1
    7.10  Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpDisplayManager", "Server\SharpDisplayManager.csproj", "{1DA8C1B3-18C5-4E74-BE4E-0B0E15FBAF49}"
    7.11  EndProject
    7.12 @@ -67,8 +67,8 @@
    7.13  		{A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|Any CPU.Build.0 = Release|Any CPU
    7.14  		{A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x64.ActiveCfg = Release|Any CPU
    7.15  		{A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x64.Build.0 = Release|Any CPU
    7.16 -		{A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x86.ActiveCfg = Release|Any CPU
    7.17 -		{A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x86.Build.0 = Release|Any CPU
    7.18 +		{A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x86.ActiveCfg = Release|x86
    7.19 +		{A76579E5-AA8D-45A3-99E1-239A5C030A78}.Release|x86.Build.0 = Release|x86
    7.20  		{7EE64074-8CDB-4448-B40C-81B75D6B31CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    7.21  		{7EE64074-8CDB-4448-B40C-81B75D6B31CD}.Debug|Any CPU.Build.0 = Debug|Any CPU
    7.22  		{7EE64074-8CDB-4448-B40C-81B75D6B31CD}.Debug|x64.ActiveCfg = Debug|Any CPU
    7.23 @@ -91,8 +91,8 @@
    7.24  		{AE897704-461D-4018-8336-2517988BF7AD}.Release|Any CPU.Build.0 = Release|Any CPU
    7.25  		{AE897704-461D-4018-8336-2517988BF7AD}.Release|x64.ActiveCfg = Release|Any CPU
    7.26  		{AE897704-461D-4018-8336-2517988BF7AD}.Release|x64.Build.0 = Release|Any CPU
    7.27 -		{AE897704-461D-4018-8336-2517988BF7AD}.Release|x86.ActiveCfg = Release|Any CPU
    7.28 -		{AE897704-461D-4018-8336-2517988BF7AD}.Release|x86.Build.0 = Release|Any CPU
    7.29 +		{AE897704-461D-4018-8336-2517988BF7AD}.Release|x86.ActiveCfg = Release|x86
    7.30 +		{AE897704-461D-4018-8336-2517988BF7AD}.Release|x86.Build.0 = Release|x86
    7.31  		{84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    7.32  		{84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Debug|Any CPU.Build.0 = Debug|Any CPU
    7.33  		{84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Debug|x64.ActiveCfg = Debug|Any CPU
    7.34 @@ -103,8 +103,8 @@
    7.35  		{84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|Any CPU.Build.0 = Release|Any CPU
    7.36  		{84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x64.ActiveCfg = Release|Any CPU
    7.37  		{84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x64.Build.0 = Release|Any CPU
    7.38 -		{84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x86.ActiveCfg = Release|Any CPU
    7.39 -		{84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x86.Build.0 = Release|Any CPU
    7.40 +		{84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x86.ActiveCfg = Release|x86
    7.41 +		{84A9ED37-E6EA-4CBD-B995-B713F46EAAB0}.Release|x86.Build.0 = Release|x86
    7.42  		{D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
    7.43  		{D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Debug|Any CPU.Build.0 = Debug|Any CPU
    7.44  		{D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Debug|x64.ActiveCfg = Debug|Any CPU
    7.45 @@ -115,8 +115,8 @@
    7.46  		{D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|Any CPU.Build.0 = Release|Any CPU
    7.47  		{D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x64.ActiveCfg = Release|Any CPU
    7.48  		{D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x64.Build.0 = Release|Any CPU
    7.49 -		{D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x86.ActiveCfg = Release|Any CPU
    7.50 -		{D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x86.Build.0 = Release|Any CPU
    7.51 +		{D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x86.ActiveCfg = Release|x86
    7.52 +		{D9AAD299-E97F-47E0-8E92-110F49F2B89C}.Release|x86.Build.0 = Release|x86
    7.53  	EndGlobalSection
    7.54  	GlobalSection(SolutionProperties) = preSolution
    7.55  		HideSolutionNode = FALSE
     8.1 --- a/SharpLibEar/SharpLibEar.csproj	Fri Aug 12 20:25:05 2016 +0200
     8.2 +++ b/SharpLibEar/SharpLibEar.csproj	Sat Aug 13 23:26:54 2016 +0200
     8.3 @@ -29,6 +29,24 @@
     8.4      <ErrorReport>prompt</ErrorReport>
     8.5      <WarningLevel>4</WarningLevel>
     8.6    </PropertyGroup>
     8.7 +  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
     8.8 +    <DebugSymbols>true</DebugSymbols>
     8.9 +    <OutputPath>bin\x86\Debug\</OutputPath>
    8.10 +    <DefineConstants>DEBUG;TRACE</DefineConstants>
    8.11 +    <DebugType>full</DebugType>
    8.12 +    <PlatformTarget>x86</PlatformTarget>
    8.13 +    <ErrorReport>prompt</ErrorReport>
    8.14 +    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
    8.15 +  </PropertyGroup>
    8.16 +  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
    8.17 +    <OutputPath>bin\x86\Release\</OutputPath>
    8.18 +    <DefineConstants>TRACE</DefineConstants>
    8.19 +    <Optimize>true</Optimize>
    8.20 +    <DebugType>pdbonly</DebugType>
    8.21 +    <PlatformTarget>x86</PlatformTarget>
    8.22 +    <ErrorReport>prompt</ErrorReport>
    8.23 +    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
    8.24 +  </PropertyGroup>
    8.25    <ItemGroup>
    8.26      <Reference Include="System" />
    8.27      <Reference Include="System.Core" />
     9.1 --- a/SharpLibUtils/Reflection.cs	Fri Aug 12 20:25:05 2016 +0200
     9.2 +++ b/SharpLibUtils/Reflection.cs	Sat Aug 13 23:26:54 2016 +0200
     9.3 @@ -3,7 +3,6 @@
     9.4  using System.Linq;
     9.5  using System.Text;
     9.6  using System.Threading.Tasks;
     9.7 -using System.Linq;
     9.8  using System.Reflection;
     9.9  
    9.10  
    10.1 --- a/SharpLibUtils/SharpLibUtils.csproj	Fri Aug 12 20:25:05 2016 +0200
    10.2 +++ b/SharpLibUtils/SharpLibUtils.csproj	Sat Aug 13 23:26:54 2016 +0200
    10.3 @@ -29,6 +29,24 @@
    10.4      <ErrorReport>prompt</ErrorReport>
    10.5      <WarningLevel>4</WarningLevel>
    10.6    </PropertyGroup>
    10.7 +  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
    10.8 +    <DebugSymbols>true</DebugSymbols>
    10.9 +    <OutputPath>bin\x86\Debug\</OutputPath>
   10.10 +    <DefineConstants>DEBUG;TRACE</DefineConstants>
   10.11 +    <DebugType>full</DebugType>
   10.12 +    <PlatformTarget>x86</PlatformTarget>
   10.13 +    <ErrorReport>prompt</ErrorReport>
   10.14 +    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
   10.15 +  </PropertyGroup>
   10.16 +  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
   10.17 +    <OutputPath>bin\x86\Release\</OutputPath>
   10.18 +    <DefineConstants>TRACE</DefineConstants>
   10.19 +    <Optimize>true</Optimize>
   10.20 +    <DebugType>pdbonly</DebugType>
   10.21 +    <PlatformTarget>x86</PlatformTarget>
   10.22 +    <ErrorReport>prompt</ErrorReport>
   10.23 +    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
   10.24 +  </PropertyGroup>
   10.25    <ItemGroup>
   10.26      <Reference Include="System" />
   10.27      <Reference Include="System.Core" />