Skip to content

Commit bc04683

Browse files
committed
1.2.0-preview1,support .net core 2.0
1 parent ff2d249 commit bc04683

24 files changed

+539
-352
lines changed

GodSharp.SerialPort.sln

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26403.3
4+
VisualStudioVersion = 15.0.26730.15
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{A9C28F7F-0F11-4E92-B31A-BF950A54F863}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{0D3F3351-97B4-4A86-B885-991892A0FAD9}"
99
EndProject
10-
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "GodSharp.Shared", "src\GodSharp.Shared\GodSharp.Shared.shproj", "{42D420D1-B004-457D-99A0-913742AA3834}"
11-
EndProject
1210
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GodSharp.SerialPort", "src\GodSharp.SerialPort\GodSharp.SerialPort.csproj", "{4006DD01-8B21-4246-A7CF-A15421738486}"
1311
EndProject
1412
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GodSharp.SerialPort.ConsoleSample", "test\GodSharp.SerialPort.ConsoleSample\GodSharp.SerialPort.ConsoleSample.csproj", "{64A904FC-399A-4D07-99F5-1B5CCD9FF17A}"
@@ -23,15 +21,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
2321
README.md = README.md
2422
EndProjectSection
2523
EndProject
26-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "nuspec", "nuspec", "{7518D83B-3290-4EB6-89BA-BC1A165A729F}"
27-
ProjectSection(SolutionItems) = preProject
28-
src\GodSharp.SerialPort\GodSharp.SerialPort.nuspec = src\GodSharp.SerialPort\GodSharp.SerialPort.nuspec
29-
EndProjectSection
24+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GodSharp.SerialPort.NetCore.ConsoleSample", "test\GodSharp.SerialPort.NetCore.ConsoleSample\GodSharp.SerialPort.NetCore.ConsoleSample.csproj", "{12A88642-232B-4FFF-941B-A2B650B9F3C0}"
3025
EndProject
3126
Global
32-
GlobalSection(SharedMSBuildProjectFiles) = preSolution
33-
src\GodSharp.Shared\GodSharp.Shared.projitems*{42d420d1-b004-457d-99a0-913742aa3834}*SharedItemsImports = 13
34-
EndGlobalSection
3527
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3628
Debug|Any CPU = Debug|Any CPU
3729
Release|Any CPU = Release|Any CPU
@@ -49,15 +41,21 @@ Global
4941
{DE27FFB1-2029-4FF5-892E-6F4274460CF1}.Debug|Any CPU.Build.0 = Debug|Any CPU
5042
{DE27FFB1-2029-4FF5-892E-6F4274460CF1}.Release|Any CPU.ActiveCfg = Release|Any CPU
5143
{DE27FFB1-2029-4FF5-892E-6F4274460CF1}.Release|Any CPU.Build.0 = Release|Any CPU
44+
{12A88642-232B-4FFF-941B-A2B650B9F3C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
45+
{12A88642-232B-4FFF-941B-A2B650B9F3C0}.Debug|Any CPU.Build.0 = Debug|Any CPU
46+
{12A88642-232B-4FFF-941B-A2B650B9F3C0}.Release|Any CPU.ActiveCfg = Release|Any CPU
47+
{12A88642-232B-4FFF-941B-A2B650B9F3C0}.Release|Any CPU.Build.0 = Release|Any CPU
5248
EndGlobalSection
5349
GlobalSection(SolutionProperties) = preSolution
5450
HideSolutionNode = FALSE
5551
EndGlobalSection
5652
GlobalSection(NestedProjects) = preSolution
57-
{42D420D1-B004-457D-99A0-913742AA3834} = {A9C28F7F-0F11-4E92-B31A-BF950A54F863}
5853
{4006DD01-8B21-4246-A7CF-A15421738486} = {A9C28F7F-0F11-4E92-B31A-BF950A54F863}
5954
{64A904FC-399A-4D07-99F5-1B5CCD9FF17A} = {0D3F3351-97B4-4A86-B885-991892A0FAD9}
6055
{DE27FFB1-2029-4FF5-892E-6F4274460CF1} = {0D3F3351-97B4-4A86-B885-991892A0FAD9}
61-
{7518D83B-3290-4EB6-89BA-BC1A165A729F} = {A9C28F7F-0F11-4E92-B31A-BF950A54F863}
56+
{12A88642-232B-4FFF-941B-A2B650B9F3C0} = {0D3F3351-97B4-4A86-B885-991892A0FAD9}
57+
EndGlobalSection
58+
GlobalSection(ExtensibilityGlobals) = postSolution
59+
SolutionGuid = {BB2FB7BA-CC7A-43CD-A7E3-4B8A06B10A56}
6260
EndGlobalSection
6361
EndGlobal

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@ class Program
9898

9999
# Notes
100100

101+
## 1.2.0
102+
- 1.support .NET Core 2.0.
103+
101104
## 1.1.2
102105
- 1.Add GodSerialPort to event action as signature param for initial a list.
103106

19 KB
Binary file not shown.
19 KB
Binary file not shown.
19 KB
Binary file not shown.
19 KB
Binary file not shown.
19 KB
Binary file not shown.
19 KB
Binary file not shown.
19 KB
Binary file not shown.
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETStandard,Version=v2.0/",
4+
"signature": "044b7fca609c04fbbdb61970c83f1b14e8b31e60"
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETStandard,Version=v2.0": {},
9+
".NETStandard,Version=v2.0/": {
10+
"GodSharp.SerialPort/2.0.0-preview1": {
11+
"dependencies": {
12+
"NETStandard.Library": "2.0.0",
13+
"System.IO.Ports": "4.4.0"
14+
},
15+
"runtime": {
16+
"GodSharp.SerialPort.dll": {}
17+
}
18+
},
19+
"Microsoft.NETCore.Platforms/1.1.0": {},
20+
"Microsoft.Win32.Registry/4.4.0": {
21+
"dependencies": {
22+
"System.Security.AccessControl": "4.4.0",
23+
"System.Security.Principal.Windows": "4.4.0"
24+
},
25+
"runtime": {
26+
"lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
27+
}
28+
},
29+
"NETStandard.Library/2.0.0": {
30+
"dependencies": {
31+
"Microsoft.NETCore.Platforms": "1.1.0"
32+
}
33+
},
34+
"System.IO.Ports/4.4.0": {
35+
"dependencies": {
36+
"Microsoft.Win32.Registry": "4.4.0"
37+
},
38+
"runtime": {
39+
"lib/netstandard2.0/System.IO.Ports.dll": {}
40+
}
41+
},
42+
"System.Security.AccessControl/4.4.0": {
43+
"dependencies": {
44+
"System.Security.Principal.Windows": "4.4.0"
45+
},
46+
"runtime": {
47+
"lib/netstandard2.0/System.Security.AccessControl.dll": {}
48+
}
49+
},
50+
"System.Security.Principal.Windows/4.4.0": {
51+
"runtime": {
52+
"lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
53+
}
54+
}
55+
}
56+
},
57+
"libraries": {
58+
"GodSharp.SerialPort/2.0.0-preview1": {
59+
"type": "project",
60+
"serviceable": false,
61+
"sha512": ""
62+
},
63+
"Microsoft.NETCore.Platforms/1.1.0": {
64+
"type": "package",
65+
"serviceable": true,
66+
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
67+
"path": "microsoft.netcore.platforms/1.1.0",
68+
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
69+
},
70+
"Microsoft.Win32.Registry/4.4.0": {
71+
"type": "package",
72+
"serviceable": true,
73+
"sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
74+
"path": "microsoft.win32.registry/4.4.0",
75+
"hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
76+
},
77+
"NETStandard.Library/2.0.0": {
78+
"type": "package",
79+
"serviceable": true,
80+
"sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",
81+
"path": "netstandard.library/2.0.0",
82+
"hashPath": "netstandard.library.2.0.0.nupkg.sha512"
83+
},
84+
"System.IO.Ports/4.4.0": {
85+
"type": "package",
86+
"serviceable": true,
87+
"sha512": "sha512-izaIWbjFZdik3ypDuA6GWj6fabhB+tR5M7QLcvAqd+I+VjI8UWoVZkh68Ao8Vf8poWWrCU875r3HQZnQW6a7GA==",
88+
"path": "system.io.ports/4.4.0",
89+
"hashPath": "system.io.ports.4.4.0.nupkg.sha512"
90+
},
91+
"System.Security.AccessControl/4.4.0": {
92+
"type": "package",
93+
"serviceable": true,
94+
"sha512": "sha512-2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
95+
"path": "system.security.accesscontrol/4.4.0",
96+
"hashPath": "system.security.accesscontrol.4.4.0.nupkg.sha512"
97+
},
98+
"System.Security.Principal.Windows/4.4.0": {
99+
"type": "package",
100+
"serviceable": true,
101+
"sha512": "sha512-pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==",
102+
"path": "system.security.principal.windows/4.4.0",
103+
"hashPath": "system.security.principal.windows.4.4.0.nupkg.sha512"
104+
}
105+
}
106+
}

0 commit comments

Comments
 (0)