|
@@ -38,11 +38,41 @@
|
38
|
38
|
<ApplicationIcon>GWSocket.ico</ApplicationIcon>
|
39
|
39
|
</PropertyGroup>
|
40
|
40
|
<ItemGroup>
|
|
41
|
+ <Reference Include="DotNetty.Buffers, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL">
|
|
42
|
+ <HintPath>..\packages\DotNetty.Buffers.0.4.6\lib\net45\DotNetty.Buffers.dll</HintPath>
|
|
43
|
+ </Reference>
|
|
44
|
+ <Reference Include="DotNetty.Codecs, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL">
|
|
45
|
+ <HintPath>..\packages\DotNetty.Codecs.0.4.6\lib\net45\DotNetty.Codecs.dll</HintPath>
|
|
46
|
+ </Reference>
|
|
47
|
+ <Reference Include="DotNetty.Common, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL">
|
|
48
|
+ <HintPath>..\packages\DotNetty.Common.0.4.6\lib\net45\DotNetty.Common.dll</HintPath>
|
|
49
|
+ </Reference>
|
|
50
|
+ <Reference Include="DotNetty.Handlers, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL">
|
|
51
|
+ <HintPath>..\packages\DotNetty.Handlers.0.4.6\lib\net45\DotNetty.Handlers.dll</HintPath>
|
|
52
|
+ </Reference>
|
|
53
|
+ <Reference Include="DotNetty.Transport, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL">
|
|
54
|
+ <HintPath>..\packages\DotNetty.Transport.0.4.6\lib\net45\DotNetty.Transport.dll</HintPath>
|
|
55
|
+ </Reference>
|
|
56
|
+ <Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions, Version=1.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
|
|
57
|
+ <HintPath>..\packages\Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0\lib\netstandard1.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll</HintPath>
|
|
58
|
+ </Reference>
|
|
59
|
+ <Reference Include="Microsoft.Extensions.Logging, Version=1.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
|
|
60
|
+ <HintPath>..\packages\Microsoft.Extensions.Logging.1.1.1\lib\netstandard1.1\Microsoft.Extensions.Logging.dll</HintPath>
|
|
61
|
+ </Reference>
|
|
62
|
+ <Reference Include="Microsoft.Extensions.Logging.Abstractions, Version=1.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
|
|
63
|
+ <HintPath>..\packages\Microsoft.Extensions.Logging.Abstractions.1.1.1\lib\netstandard1.1\Microsoft.Extensions.Logging.Abstractions.dll</HintPath>
|
|
64
|
+ </Reference>
|
41
|
65
|
<Reference Include="Newtonsoft.Json">
|
42
|
66
|
<HintPath>dlls\Newtonsoft.Json.dll</HintPath>
|
43
|
67
|
</Reference>
|
44
|
68
|
<Reference Include="System" />
|
|
69
|
+ <Reference Include="System.ComponentModel.Composition" />
|
45
|
70
|
<Reference Include="System.Core" />
|
|
71
|
+ <Reference Include="System.IO.Compression" />
|
|
72
|
+ <Reference Include="System.Numerics" />
|
|
73
|
+ <Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
|
74
|
+ <HintPath>..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
|
|
75
|
+ </Reference>
|
46
|
76
|
<Reference Include="System.Runtime.Serialization" />
|
47
|
77
|
<Reference Include="System.Xml.Linq" />
|
48
|
78
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
@@ -64,7 +94,10 @@
|
64
|
94
|
<Compile Include="AnaProtocol.Designer.cs">
|
65
|
95
|
<DependentUpon>AnaProtocol.cs</DependentUpon>
|
66
|
96
|
</Compile>
|
|
97
|
+ <Compile Include="config\ConfigBean.cs" />
|
67
|
98
|
<Compile Include="db\AccessDbLoader.cs" />
|
|
99
|
+ <Compile Include="dotnetty\DotNettyClient.cs" />
|
|
100
|
+ <Compile Include="dotnetty\DotNettyClientHandler.cs" />
|
68
|
101
|
<Compile Include="excel\ExcelLoader.cs" />
|
69
|
102
|
<Compile Include="Form1.cs">
|
70
|
103
|
<SubType>Form</SubType>
|
|
@@ -107,8 +140,10 @@
|
107
|
140
|
<Compile Include="Program.cs" />
|
108
|
141
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
109
|
142
|
<Compile Include="property\PropertiesLoader.cs" />
|
|
143
|
+ <Compile Include="util\AryUtil.cs" />
|
110
|
144
|
<Compile Include="util\CheckUtil.cs" />
|
111
|
145
|
<Compile Include="util\HexUtil.cs" />
|
|
146
|
+ <Compile Include="util\TimeUtil.cs" />
|
112
|
147
|
<Compile Include="util\Utils.cs" />
|
113
|
148
|
<Compile Include="WebViewForm.cs">
|
114
|
149
|
<SubType>Form</SubType>
|
|
@@ -157,6 +192,7 @@
|
157
|
192
|
<EmbeddedResource Include="WebViewForm.resx">
|
158
|
193
|
<DependentUpon>WebViewForm.cs</DependentUpon>
|
159
|
194
|
</EmbeddedResource>
|
|
195
|
+ <None Include="packages.config" />
|
160
|
196
|
<None Include="Properties\Settings.settings">
|
161
|
197
|
<Generator>SettingsSingleFileGenerator</Generator>
|
162
|
198
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|