+++ .vs/LogSendCsharp/DesignTimeBuild/.dtbcache.v2
Binary file is not shown |
+++ .vs/LogSendCsharp/v16/.suo
Binary file is not shown |
+++ .vs/LogSendCsharp/v17/.suo
Binary file is not shown |
+++ LogSendCSharp.csproj
... | ... | @@ -0,0 +1,14 @@ |
1 | +<Project Sdk="Microsoft.NET.Sdk"> | |
2 | + | |
3 | + <PropertyGroup> | |
4 | + <OutputType>Exe</OutputType> | |
5 | + <TargetFramework>netcoreapp3.1</TargetFramework> | |
6 | + </PropertyGroup> | |
7 | + | |
8 | + <ItemGroup> | |
9 | + <PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> | |
10 | + <PackageReference Include="RestSharp" Version="108.0.1" /> | |
11 | + <PackageReference Include="System.Data.SqlClient" Version="4.8.3" /> | |
12 | + </ItemGroup> | |
13 | + | |
14 | +</Project> |
+++ LogSendCSharp.sln
... | ... | @@ -0,0 +1,25 @@ |
1 | + | |
2 | +Microsoft Visual Studio Solution File, Format Version 12.00 | |
3 | +# Visual Studio Version 16 | |
4 | +VisualStudioVersion = 16.0.32002.261 | |
5 | +MinimumVisualStudioVersion = 10.0.40219.1 | |
6 | +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LogSendCSharp", "LogSendCSharp.csproj", "{DCAD0DED-8D31-40A6-804D-E9FB70FCA430}" | |
7 | +EndProject | |
8 | +Global | |
9 | + GlobalSection(SolutionConfigurationPlatforms) = preSolution | |
10 | + Debug|Any CPU = Debug|Any CPU | |
11 | + Release|Any CPU = Release|Any CPU | |
12 | + EndGlobalSection | |
13 | + GlobalSection(ProjectConfigurationPlatforms) = postSolution | |
14 | + {DCAD0DED-8D31-40A6-804D-E9FB70FCA430}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |
15 | + {DCAD0DED-8D31-40A6-804D-E9FB70FCA430}.Debug|Any CPU.Build.0 = Debug|Any CPU | |
16 | + {DCAD0DED-8D31-40A6-804D-E9FB70FCA430}.Release|Any CPU.ActiveCfg = Release|Any CPU | |
17 | + {DCAD0DED-8D31-40A6-804D-E9FB70FCA430}.Release|Any CPU.Build.0 = Release|Any CPU | |
18 | + EndGlobalSection | |
19 | + GlobalSection(SolutionProperties) = preSolution | |
20 | + HideSolutionNode = FALSE | |
21 | + EndGlobalSection | |
22 | + GlobalSection(ExtensibilityGlobals) = postSolution | |
23 | + SolutionGuid = {7B67795A-3B38-41F8-8573-DDAA96E2A4C5} | |
24 | + EndGlobalSection | |
25 | +EndGlobal |
+++ Program.cs
... | ... | @@ -0,0 +1,116 @@ |
1 | +using System; | |
2 | +using System.Data.SqlClient; | |
3 | +using Newtonsoft.Json.Linq; | |
4 | +using RestSharp; | |
5 | +using System.Collections; | |
6 | + | |
7 | + | |
8 | +namespace LogSendCSharp | |
9 | +{ | |
10 | + class Program | |
11 | + { | |
12 | + static void Main(string[] args) | |
13 | + { | |
14 | + Console.WriteLine("Smart Facory Log Send Program"); | |
15 | + DBConnection(); | |
16 | + } | |
17 | + static void Post(string url,string message,out string code,out string rslt) | |
18 | + { | |
19 | + var client = new RestClient(url); | |
20 | + var request = new RestRequest(); | |
21 | + request.AddHeader("Content-Type", "application/x-www-form-urlencoded"); | |
22 | + request.AddBody(message); | |
23 | + request.Method = Method.Post; | |
24 | + var response = client.Execute(request); | |
25 | + //Console.WriteLine(response.Content); | |
26 | + JObject jobj = JObject.Parse(response.Content); | |
27 | + code = jobj.GetValue("result")["recptnRsltCd"].ToString(); | |
28 | + rslt = jobj.GetValue("result")["recptnRslt"].ToString(); | |
29 | + } | |
30 | + | |
31 | + static void DBConnection() | |
32 | + { | |
33 | + | |
34 | + string strConn = "Data Source=signus-smes.koreacentral.cloudapp.azure.com,14443;Initial Catalog=U3SMESHV;User ID=hvsmes;Password=u3hvsmes;"; | |
35 | + | |
36 | + | |
37 | + SqlConnection conn = null; | |
38 | + ArrayList arrList = new ArrayList(); | |
39 | + | |
40 | + try | |
41 | + { | |
42 | + conn = new SqlConnection(strConn); | |
43 | + conn.Open(); | |
44 | + | |
45 | + SqlCommand cmd = new SqlCommand(); | |
46 | + cmd.Connection = conn; | |
47 | + cmd.CommandText = "select * from T_SYS_LOG_SF WHERE SEND_YN= 'N' ORDER BY idx"; | |
48 | + SqlDataReader rdr = cmd.ExecuteReader(); | |
49 | + JArray jarr = new JArray(); | |
50 | + | |
51 | + int idx = 0; | |
52 | + | |
53 | + while (rdr.Read()) | |
54 | + { | |
55 | + JObject obj = new JObject(); | |
56 | + idx = int.Parse(rdr["idx"].ToString()); | |
57 | + arrList.Add(idx); | |
58 | + string crtfcKey = rdr["crtfcKey"].ToString(); | |
59 | + string logDt = rdr["logDt"].ToString(); | |
60 | + string useSe = rdr["useSe"].ToString(); | |
61 | + string sysUser = rdr["sysUser"].ToString(); | |
62 | + string conectIp = rdr["conectIp"].ToString(); | |
63 | + string dataUsgqty = rdr["dataUsgqty"].ToString(); | |
64 | + obj.Add("crtfcKey", crtfcKey); | |
65 | + obj.Add("logDt", logDt); | |
66 | + obj.Add("useSe", useSe); | |
67 | + obj.Add("sysUser", sysUser); | |
68 | + obj.Add("conectIp", conectIp); | |
69 | + obj.Add("dataUsgqty", dataUsgqty); | |
70 | + | |
71 | + jarr.Add(obj); | |
72 | + | |
73 | + | |
74 | + } | |
75 | + | |
76 | + if(rdr != null) rdr.Close(); | |
77 | + for (int i = 0; i < arrList.Count; i++) | |
78 | + { | |
79 | + string url = "https://log.smart-factory.kr/apisvc/sendLogDataJSON.do"; | |
80 | + string message = "logData=" + jarr[i].ToString(); | |
81 | + string code = ""; | |
82 | + string rslt = ""; | |
83 | + Post(url, message, out code,out rslt); | |
84 | + | |
85 | + if (code.Equals("AP1002")) | |
86 | + { | |
87 | + cmd.CommandText = "UPDATE T_SYS_LOG_SF SET SEND_YN= 'Y' WHERE IDX=" + arrList[i]; | |
88 | + cmd.ExecuteNonQuery(); | |
89 | + Console.Write("전송 성공!!!"); | |
90 | + } | |
91 | + else | |
92 | + { | |
93 | + Console.WriteLine("전송 실패!!! ===> 실패코드:"+ code+",\t"+"실패사유:"+rslt); | |
94 | + break; | |
95 | + } | |
96 | + | |
97 | + } | |
98 | + | |
99 | + } | |
100 | + catch (Exception ex) | |
101 | + { | |
102 | + Console.WriteLine(ex.Message); | |
103 | + //throw new Exception(ex.Message); | |
104 | + } | |
105 | + finally | |
106 | + { | |
107 | + if (conn != null) | |
108 | + { | |
109 | + conn.Close(); | |
110 | + } | |
111 | + } | |
112 | + | |
113 | + } | |
114 | + | |
115 | + } | |
116 | +} |
+++ bin/Debug/netcoreapp3.1/ConsoleLog.deps.json
... | ... | @@ -0,0 +1,214 @@ |
1 | +{ | |
2 | + "runtimeTarget": { | |
3 | + "name": ".NETCoreApp,Version=v3.1", | |
4 | + "signature": "" | |
5 | + }, | |
6 | + "compilationOptions": {}, | |
7 | + "targets": { | |
8 | + ".NETCoreApp,Version=v3.1": { | |
9 | + "ConsoleLog/1.0.0": { | |
10 | + "dependencies": { | |
11 | + "Newtonsoft.Json": "13.0.1", | |
12 | + "RestSharp": "108.0.1", | |
13 | + "System.Data.SqlClient": "4.8.3" | |
14 | + }, | |
15 | + "runtime": { | |
16 | + "ConsoleLog.dll": {} | |
17 | + } | |
18 | + }, | |
19 | + "Microsoft.NETCore.Platforms/3.1.0": {}, | |
20 | + "Microsoft.Win32.Registry/4.7.0": { | |
21 | + "dependencies": { | |
22 | + "System.Security.AccessControl": "4.7.0", | |
23 | + "System.Security.Principal.Windows": "4.7.0" | |
24 | + } | |
25 | + }, | |
26 | + "Newtonsoft.Json/13.0.1": { | |
27 | + "runtime": { | |
28 | + "lib/netstandard2.0/Newtonsoft.Json.dll": { | |
29 | + "assemblyVersion": "13.0.0.0", | |
30 | + "fileVersion": "13.0.1.25517" | |
31 | + } | |
32 | + } | |
33 | + }, | |
34 | + "RestSharp/108.0.1": { | |
35 | + "dependencies": { | |
36 | + "System.Text.Json": "5.0.0" | |
37 | + }, | |
38 | + "runtime": { | |
39 | + "lib/netstandard2.0/RestSharp.dll": { | |
40 | + "assemblyVersion": "108.0.1.0", | |
41 | + "fileVersion": "108.0.1.0" | |
42 | + } | |
43 | + } | |
44 | + }, | |
45 | + "runtime.native.System.Data.SqlClient.sni/4.7.0": { | |
46 | + "dependencies": { | |
47 | + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", | |
48 | + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", | |
49 | + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" | |
50 | + } | |
51 | + }, | |
52 | + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
53 | + "runtimeTargets": { | |
54 | + "runtimes/win-arm64/native/sni.dll": { | |
55 | + "rid": "win-arm64", | |
56 | + "assetType": "native", | |
57 | + "fileVersion": "4.6.25512.1" | |
58 | + } | |
59 | + } | |
60 | + }, | |
61 | + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
62 | + "runtimeTargets": { | |
63 | + "runtimes/win-x64/native/sni.dll": { | |
64 | + "rid": "win-x64", | |
65 | + "assetType": "native", | |
66 | + "fileVersion": "4.6.25512.1" | |
67 | + } | |
68 | + } | |
69 | + }, | |
70 | + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
71 | + "runtimeTargets": { | |
72 | + "runtimes/win-x86/native/sni.dll": { | |
73 | + "rid": "win-x86", | |
74 | + "assetType": "native", | |
75 | + "fileVersion": "4.6.25512.1" | |
76 | + } | |
77 | + } | |
78 | + }, | |
79 | + "System.Data.SqlClient/4.8.3": { | |
80 | + "dependencies": { | |
81 | + "Microsoft.Win32.Registry": "4.7.0", | |
82 | + "System.Security.Principal.Windows": "4.7.0", | |
83 | + "runtime.native.System.Data.SqlClient.sni": "4.7.0" | |
84 | + }, | |
85 | + "runtime": { | |
86 | + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { | |
87 | + "assemblyVersion": "4.6.1.3", | |
88 | + "fileVersion": "4.700.21.41603" | |
89 | + } | |
90 | + }, | |
91 | + "runtimeTargets": { | |
92 | + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { | |
93 | + "rid": "unix", | |
94 | + "assetType": "runtime", | |
95 | + "assemblyVersion": "4.6.1.3", | |
96 | + "fileVersion": "4.700.21.41603" | |
97 | + }, | |
98 | + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { | |
99 | + "rid": "win", | |
100 | + "assetType": "runtime", | |
101 | + "assemblyVersion": "4.6.1.3", | |
102 | + "fileVersion": "4.700.21.41603" | |
103 | + } | |
104 | + } | |
105 | + }, | |
106 | + "System.Security.AccessControl/4.7.0": { | |
107 | + "dependencies": { | |
108 | + "Microsoft.NETCore.Platforms": "3.1.0", | |
109 | + "System.Security.Principal.Windows": "4.7.0" | |
110 | + } | |
111 | + }, | |
112 | + "System.Security.Principal.Windows/4.7.0": {}, | |
113 | + "System.Text.Json/5.0.0": { | |
114 | + "runtime": { | |
115 | + "lib/netcoreapp3.0/System.Text.Json.dll": { | |
116 | + "assemblyVersion": "5.0.0.0", | |
117 | + "fileVersion": "5.0.20.51904" | |
118 | + } | |
119 | + } | |
120 | + } | |
121 | + } | |
122 | + }, | |
123 | + "libraries": { | |
124 | + "ConsoleLog/1.0.0": { | |
125 | + "type": "project", | |
126 | + "serviceable": false, | |
127 | + "sha512": "" | |
128 | + }, | |
129 | + "Microsoft.NETCore.Platforms/3.1.0": { | |
130 | + "type": "package", | |
131 | + "serviceable": true, | |
132 | + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", | |
133 | + "path": "microsoft.netcore.platforms/3.1.0", | |
134 | + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" | |
135 | + }, | |
136 | + "Microsoft.Win32.Registry/4.7.0": { | |
137 | + "type": "package", | |
138 | + "serviceable": true, | |
139 | + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", | |
140 | + "path": "microsoft.win32.registry/4.7.0", | |
141 | + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" | |
142 | + }, | |
143 | + "Newtonsoft.Json/13.0.1": { | |
144 | + "type": "package", | |
145 | + "serviceable": true, | |
146 | + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", | |
147 | + "path": "newtonsoft.json/13.0.1", | |
148 | + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" | |
149 | + }, | |
150 | + "RestSharp/108.0.1": { | |
151 | + "type": "package", | |
152 | + "serviceable": true, | |
153 | + "sha512": "sha512-XKwuwWq7A4dxZ8l9QkS2+ePLJ9ImmLaJSeFO6H2kpII4Us4n1NRs4w3c//8H2BYpL1XqBE8nmsd9aNCVBwXmOA==", | |
154 | + "path": "restsharp/108.0.1", | |
155 | + "hashPath": "restsharp.108.0.1.nupkg.sha512" | |
156 | + }, | |
157 | + "runtime.native.System.Data.SqlClient.sni/4.7.0": { | |
158 | + "type": "package", | |
159 | + "serviceable": true, | |
160 | + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", | |
161 | + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", | |
162 | + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" | |
163 | + }, | |
164 | + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
165 | + "type": "package", | |
166 | + "serviceable": true, | |
167 | + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", | |
168 | + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", | |
169 | + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" | |
170 | + }, | |
171 | + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
172 | + "type": "package", | |
173 | + "serviceable": true, | |
174 | + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", | |
175 | + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", | |
176 | + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" | |
177 | + }, | |
178 | + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
179 | + "type": "package", | |
180 | + "serviceable": true, | |
181 | + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", | |
182 | + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", | |
183 | + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" | |
184 | + }, | |
185 | + "System.Data.SqlClient/4.8.3": { | |
186 | + "type": "package", | |
187 | + "serviceable": true, | |
188 | + "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", | |
189 | + "path": "system.data.sqlclient/4.8.3", | |
190 | + "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" | |
191 | + }, | |
192 | + "System.Security.AccessControl/4.7.0": { | |
193 | + "type": "package", | |
194 | + "serviceable": true, | |
195 | + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", | |
196 | + "path": "system.security.accesscontrol/4.7.0", | |
197 | + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" | |
198 | + }, | |
199 | + "System.Security.Principal.Windows/4.7.0": { | |
200 | + "type": "package", | |
201 | + "serviceable": true, | |
202 | + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", | |
203 | + "path": "system.security.principal.windows/4.7.0", | |
204 | + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" | |
205 | + }, | |
206 | + "System.Text.Json/5.0.0": { | |
207 | + "type": "package", | |
208 | + "serviceable": true, | |
209 | + "sha512": "sha512-+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", | |
210 | + "path": "system.text.json/5.0.0", | |
211 | + "hashPath": "system.text.json.5.0.0.nupkg.sha512" | |
212 | + } | |
213 | + } | |
214 | +}(No newline at end of file) |
+++ bin/Debug/netcoreapp3.1/ConsoleLog.dll
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/ConsoleLog.exe
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/ConsoleLog.pdb
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/ConsoleLog.runtimeconfig.dev.json
... | ... | @@ -0,0 +1,8 @@ |
1 | +{ | |
2 | + "runtimeOptions": { | |
3 | + "additionalProbingPaths": [ | |
4 | + "C:\\Users\\Signus\\.dotnet\\store\\|arch|\\|tfm|", | |
5 | + "C:\\Users\\Signus\\.nuget\\packages" | |
6 | + ] | |
7 | + } | |
8 | +}(No newline at end of file) |
+++ bin/Debug/netcoreapp3.1/ConsoleLog.runtimeconfig.json
... | ... | @@ -0,0 +1,9 @@ |
1 | +{ | |
2 | + "runtimeOptions": { | |
3 | + "tfm": "netcoreapp3.1", | |
4 | + "framework": { | |
5 | + "name": "Microsoft.NETCore.App", | |
6 | + "version": "3.1.0" | |
7 | + } | |
8 | + } | |
9 | +}(No newline at end of file) |
+++ bin/Debug/netcoreapp3.1/LogSendCSharp.deps.json
... | ... | @@ -0,0 +1,214 @@ |
1 | +{ | |
2 | + "runtimeTarget": { | |
3 | + "name": ".NETCoreApp,Version=v3.1", | |
4 | + "signature": "" | |
5 | + }, | |
6 | + "compilationOptions": {}, | |
7 | + "targets": { | |
8 | + ".NETCoreApp,Version=v3.1": { | |
9 | + "LogSendCSharp/1.0.0": { | |
10 | + "dependencies": { | |
11 | + "Newtonsoft.Json": "13.0.1", | |
12 | + "RestSharp": "108.0.1", | |
13 | + "System.Data.SqlClient": "4.8.3" | |
14 | + }, | |
15 | + "runtime": { | |
16 | + "LogSendCSharp.dll": {} | |
17 | + } | |
18 | + }, | |
19 | + "Microsoft.NETCore.Platforms/3.1.0": {}, | |
20 | + "Microsoft.Win32.Registry/4.7.0": { | |
21 | + "dependencies": { | |
22 | + "System.Security.AccessControl": "4.7.0", | |
23 | + "System.Security.Principal.Windows": "4.7.0" | |
24 | + } | |
25 | + }, | |
26 | + "Newtonsoft.Json/13.0.1": { | |
27 | + "runtime": { | |
28 | + "lib/netstandard2.0/Newtonsoft.Json.dll": { | |
29 | + "assemblyVersion": "13.0.0.0", | |
30 | + "fileVersion": "13.0.1.25517" | |
31 | + } | |
32 | + } | |
33 | + }, | |
34 | + "RestSharp/108.0.1": { | |
35 | + "dependencies": { | |
36 | + "System.Text.Json": "5.0.0" | |
37 | + }, | |
38 | + "runtime": { | |
39 | + "lib/netstandard2.0/RestSharp.dll": { | |
40 | + "assemblyVersion": "108.0.1.0", | |
41 | + "fileVersion": "108.0.1.0" | |
42 | + } | |
43 | + } | |
44 | + }, | |
45 | + "runtime.native.System.Data.SqlClient.sni/4.7.0": { | |
46 | + "dependencies": { | |
47 | + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", | |
48 | + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", | |
49 | + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" | |
50 | + } | |
51 | + }, | |
52 | + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
53 | + "runtimeTargets": { | |
54 | + "runtimes/win-arm64/native/sni.dll": { | |
55 | + "rid": "win-arm64", | |
56 | + "assetType": "native", | |
57 | + "fileVersion": "4.6.25512.1" | |
58 | + } | |
59 | + } | |
60 | + }, | |
61 | + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
62 | + "runtimeTargets": { | |
63 | + "runtimes/win-x64/native/sni.dll": { | |
64 | + "rid": "win-x64", | |
65 | + "assetType": "native", | |
66 | + "fileVersion": "4.6.25512.1" | |
67 | + } | |
68 | + } | |
69 | + }, | |
70 | + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
71 | + "runtimeTargets": { | |
72 | + "runtimes/win-x86/native/sni.dll": { | |
73 | + "rid": "win-x86", | |
74 | + "assetType": "native", | |
75 | + "fileVersion": "4.6.25512.1" | |
76 | + } | |
77 | + } | |
78 | + }, | |
79 | + "System.Data.SqlClient/4.8.3": { | |
80 | + "dependencies": { | |
81 | + "Microsoft.Win32.Registry": "4.7.0", | |
82 | + "System.Security.Principal.Windows": "4.7.0", | |
83 | + "runtime.native.System.Data.SqlClient.sni": "4.7.0" | |
84 | + }, | |
85 | + "runtime": { | |
86 | + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { | |
87 | + "assemblyVersion": "4.6.1.3", | |
88 | + "fileVersion": "4.700.21.41603" | |
89 | + } | |
90 | + }, | |
91 | + "runtimeTargets": { | |
92 | + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { | |
93 | + "rid": "unix", | |
94 | + "assetType": "runtime", | |
95 | + "assemblyVersion": "4.6.1.3", | |
96 | + "fileVersion": "4.700.21.41603" | |
97 | + }, | |
98 | + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { | |
99 | + "rid": "win", | |
100 | + "assetType": "runtime", | |
101 | + "assemblyVersion": "4.6.1.3", | |
102 | + "fileVersion": "4.700.21.41603" | |
103 | + } | |
104 | + } | |
105 | + }, | |
106 | + "System.Security.AccessControl/4.7.0": { | |
107 | + "dependencies": { | |
108 | + "Microsoft.NETCore.Platforms": "3.1.0", | |
109 | + "System.Security.Principal.Windows": "4.7.0" | |
110 | + } | |
111 | + }, | |
112 | + "System.Security.Principal.Windows/4.7.0": {}, | |
113 | + "System.Text.Json/5.0.0": { | |
114 | + "runtime": { | |
115 | + "lib/netcoreapp3.0/System.Text.Json.dll": { | |
116 | + "assemblyVersion": "5.0.0.0", | |
117 | + "fileVersion": "5.0.20.51904" | |
118 | + } | |
119 | + } | |
120 | + } | |
121 | + } | |
122 | + }, | |
123 | + "libraries": { | |
124 | + "LogSendCSharp/1.0.0": { | |
125 | + "type": "project", | |
126 | + "serviceable": false, | |
127 | + "sha512": "" | |
128 | + }, | |
129 | + "Microsoft.NETCore.Platforms/3.1.0": { | |
130 | + "type": "package", | |
131 | + "serviceable": true, | |
132 | + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", | |
133 | + "path": "microsoft.netcore.platforms/3.1.0", | |
134 | + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" | |
135 | + }, | |
136 | + "Microsoft.Win32.Registry/4.7.0": { | |
137 | + "type": "package", | |
138 | + "serviceable": true, | |
139 | + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", | |
140 | + "path": "microsoft.win32.registry/4.7.0", | |
141 | + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" | |
142 | + }, | |
143 | + "Newtonsoft.Json/13.0.1": { | |
144 | + "type": "package", | |
145 | + "serviceable": true, | |
146 | + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", | |
147 | + "path": "newtonsoft.json/13.0.1", | |
148 | + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" | |
149 | + }, | |
150 | + "RestSharp/108.0.1": { | |
151 | + "type": "package", | |
152 | + "serviceable": true, | |
153 | + "sha512": "sha512-XKwuwWq7A4dxZ8l9QkS2+ePLJ9ImmLaJSeFO6H2kpII4Us4n1NRs4w3c//8H2BYpL1XqBE8nmsd9aNCVBwXmOA==", | |
154 | + "path": "restsharp/108.0.1", | |
155 | + "hashPath": "restsharp.108.0.1.nupkg.sha512" | |
156 | + }, | |
157 | + "runtime.native.System.Data.SqlClient.sni/4.7.0": { | |
158 | + "type": "package", | |
159 | + "serviceable": true, | |
160 | + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", | |
161 | + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", | |
162 | + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" | |
163 | + }, | |
164 | + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
165 | + "type": "package", | |
166 | + "serviceable": true, | |
167 | + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", | |
168 | + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", | |
169 | + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" | |
170 | + }, | |
171 | + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
172 | + "type": "package", | |
173 | + "serviceable": true, | |
174 | + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", | |
175 | + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", | |
176 | + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" | |
177 | + }, | |
178 | + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
179 | + "type": "package", | |
180 | + "serviceable": true, | |
181 | + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", | |
182 | + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", | |
183 | + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" | |
184 | + }, | |
185 | + "System.Data.SqlClient/4.8.3": { | |
186 | + "type": "package", | |
187 | + "serviceable": true, | |
188 | + "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", | |
189 | + "path": "system.data.sqlclient/4.8.3", | |
190 | + "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" | |
191 | + }, | |
192 | + "System.Security.AccessControl/4.7.0": { | |
193 | + "type": "package", | |
194 | + "serviceable": true, | |
195 | + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", | |
196 | + "path": "system.security.accesscontrol/4.7.0", | |
197 | + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" | |
198 | + }, | |
199 | + "System.Security.Principal.Windows/4.7.0": { | |
200 | + "type": "package", | |
201 | + "serviceable": true, | |
202 | + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", | |
203 | + "path": "system.security.principal.windows/4.7.0", | |
204 | + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" | |
205 | + }, | |
206 | + "System.Text.Json/5.0.0": { | |
207 | + "type": "package", | |
208 | + "serviceable": true, | |
209 | + "sha512": "sha512-+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", | |
210 | + "path": "system.text.json/5.0.0", | |
211 | + "hashPath": "system.text.json.5.0.0.nupkg.sha512" | |
212 | + } | |
213 | + } | |
214 | +}(No newline at end of file) |
+++ bin/Debug/netcoreapp3.1/LogSendCSharp.dll
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/LogSendCSharp.exe
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/LogSendCSharp.pdb
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/LogSendCSharp.runtimeconfig.dev.json
... | ... | @@ -0,0 +1,8 @@ |
1 | +{ | |
2 | + "runtimeOptions": { | |
3 | + "additionalProbingPaths": [ | |
4 | + "C:\\Users\\Signus\\.dotnet\\store\\|arch|\\|tfm|", | |
5 | + "C:\\Users\\Signus\\.nuget\\packages" | |
6 | + ] | |
7 | + } | |
8 | +}(No newline at end of file) |
+++ bin/Debug/netcoreapp3.1/LogSendCSharp.runtimeconfig.json
... | ... | @@ -0,0 +1,9 @@ |
1 | +{ | |
2 | + "runtimeOptions": { | |
3 | + "tfm": "netcoreapp3.1", | |
4 | + "framework": { | |
5 | + "name": "Microsoft.NETCore.App", | |
6 | + "version": "3.1.0" | |
7 | + } | |
8 | + } | |
9 | +}(No newline at end of file) |
+++ bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/RestSharp.dll
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/System.Data.SqlClient.dll
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/System.Text.Json.dll
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll
Binary file is not shown |
+++ bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll
Binary file is not shown |
+++ obj/ConsoleLog.csproj.nuget.dgspec.json
... | ... | @@ -0,0 +1,76 @@ |
1 | +{ | |
2 | + "format": 1, | |
3 | + "restore": { | |
4 | + "C:\\Users\\Signus\\source\\repos\\ConsoleLog\\ConsoleLog\\ConsoleLog.csproj": {} | |
5 | + }, | |
6 | + "projects": { | |
7 | + "C:\\Users\\Signus\\source\\repos\\ConsoleLog\\ConsoleLog\\ConsoleLog.csproj": { | |
8 | + "version": "1.0.0", | |
9 | + "restore": { | |
10 | + "projectUniqueName": "C:\\Users\\Signus\\source\\repos\\ConsoleLog\\ConsoleLog\\ConsoleLog.csproj", | |
11 | + "projectName": "ConsoleLog", | |
12 | + "projectPath": "C:\\Users\\Signus\\source\\repos\\ConsoleLog\\ConsoleLog\\ConsoleLog.csproj", | |
13 | + "packagesPath": "C:\\Users\\Signus\\.nuget\\packages\\", | |
14 | + "outputPath": "C:\\Users\\Signus\\source\\repos\\ConsoleLog\\ConsoleLog\\obj\\", | |
15 | + "projectStyle": "PackageReference", | |
16 | + "configFilePaths": [ | |
17 | + "C:\\Users\\Signus\\AppData\\Roaming\\NuGet\\NuGet.Config", | |
18 | + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | |
19 | + ], | |
20 | + "originalTargetFrameworks": [ | |
21 | + "netcoreapp3.1" | |
22 | + ], | |
23 | + "sources": { | |
24 | + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, | |
25 | + "https://api.nuget.org/v3/index.json": {} | |
26 | + }, | |
27 | + "frameworks": { | |
28 | + "netcoreapp3.1": { | |
29 | + "targetAlias": "netcoreapp3.1", | |
30 | + "projectReferences": {} | |
31 | + } | |
32 | + }, | |
33 | + "warningProperties": { | |
34 | + "warnAsError": [ | |
35 | + "NU1605" | |
36 | + ] | |
37 | + } | |
38 | + }, | |
39 | + "frameworks": { | |
40 | + "netcoreapp3.1": { | |
41 | + "targetAlias": "netcoreapp3.1", | |
42 | + "dependencies": { | |
43 | + "Newtonsoft.Json": { | |
44 | + "target": "Package", | |
45 | + "version": "[13.0.1, )" | |
46 | + }, | |
47 | + "RestSharp": { | |
48 | + "target": "Package", | |
49 | + "version": "[108.0.1, )" | |
50 | + }, | |
51 | + "System.Data.SqlClient": { | |
52 | + "target": "Package", | |
53 | + "version": "[4.8.3, )" | |
54 | + } | |
55 | + }, | |
56 | + "imports": [ | |
57 | + "net461", | |
58 | + "net462", | |
59 | + "net47", | |
60 | + "net471", | |
61 | + "net472", | |
62 | + "net48" | |
63 | + ], | |
64 | + "assetTargetFallback": true, | |
65 | + "warn": true, | |
66 | + "frameworkReferences": { | |
67 | + "Microsoft.NETCore.App": { | |
68 | + "privateAssets": "all" | |
69 | + } | |
70 | + }, | |
71 | + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" | |
72 | + } | |
73 | + } | |
74 | + } | |
75 | + } | |
76 | +}(No newline at end of file) |
+++ obj/ConsoleLog.csproj.nuget.g.props
... | ... | @@ -0,0 +1,18 @@ |
1 | +<?xml version="1.0" encoding="utf-8" standalone="no"?> | |
2 | +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 | + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |
4 | + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> | |
5 | + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> | |
6 | + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> | |
7 | + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> | |
8 | + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Signus\.nuget\packages\</NuGetPackageFolders> | |
9 | + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> | |
10 | + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.11.1</NuGetToolVersion> | |
11 | + </PropertyGroup> | |
12 | + <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |
13 | + <SourceRoot Include="C:\Users\Signus\.nuget\packages\" /> | |
14 | + </ItemGroup> | |
15 | + <PropertyGroup> | |
16 | + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> | |
17 | + </PropertyGroup> | |
18 | +</Project>(No newline at end of file) |
+++ obj/ConsoleLog.csproj.nuget.g.targets
... | ... | @@ -0,0 +1,6 @@ |
1 | +<?xml version="1.0" encoding="utf-8" standalone="no"?> | |
2 | +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 | + <PropertyGroup> | |
4 | + <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> | |
5 | + </PropertyGroup> | |
6 | +</Project>(No newline at end of file) |
+++ obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
... | ... | @@ -0,0 +1,4 @@ |
1 | +// <autogenerated /> | |
2 | +using System; | |
3 | +using System.Reflection; | |
4 | +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] |
+++ obj/Debug/netcoreapp3.1/ConsoleLog.AssemblyInfo.cs
... | ... | @@ -0,0 +1,23 @@ |
1 | +//------------------------------------------------------------------------------ | |
2 | +// <auto-generated> | |
3 | +// 이 코드는 도구를 사용하여 생성되었습니다. | |
4 | +// 런타임 버전:4.0.30319.42000 | |
5 | +// | |
6 | +// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 | |
7 | +// 이러한 변경 내용이 손실됩니다. | |
8 | +// </auto-generated> | |
9 | +//------------------------------------------------------------------------------ | |
10 | + | |
11 | +using System; | |
12 | +using System.Reflection; | |
13 | + | |
14 | +[assembly: System.Reflection.AssemblyCompanyAttribute("ConsoleLog")] | |
15 | +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | |
16 | +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | |
17 | +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] | |
18 | +[assembly: System.Reflection.AssemblyProductAttribute("ConsoleLog")] | |
19 | +[assembly: System.Reflection.AssemblyTitleAttribute("ConsoleLog")] | |
20 | +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | |
21 | + | |
22 | +// MSBuild WriteCodeFragment 클래스에서 생성되었습니다. | |
23 | + |
+++ obj/Debug/netcoreapp3.1/ConsoleLog.AssemblyInfoInputs.cache
... | ... | @@ -0,0 +1,1 @@ |
1 | +4c97e37671c0f280c6d9a72aa6f652cea71c1384 |
+++ obj/Debug/netcoreapp3.1/ConsoleLog.GeneratedMSBuildEditorConfig.editorconfig
... | ... | @@ -0,0 +1,3 @@ |
1 | +is_global = true | |
2 | +build_property.RootNamespace = ConsoleLog | |
3 | +build_property.ProjectDir = C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\ |
+++ obj/Debug/netcoreapp3.1/ConsoleLog.assets.cache
Binary file is not shown |
+++ obj/Debug/netcoreapp3.1/ConsoleLog.csproj.AssemblyReference.cache
Binary file is not shown |
+++ obj/Debug/netcoreapp3.1/ConsoleLog.csproj.CopyComplete
... | ... | @@ -0,0 +1,0 @@ |
+++ obj/Debug/netcoreapp3.1/ConsoleLog.csproj.CoreCompileInputs.cache
... | ... | @@ -0,0 +1,1 @@ |
1 | +48d46b8fdb5b7b7e6fe40580c6ffceac02b894f7 |
+++ obj/Debug/netcoreapp3.1/ConsoleLog.csproj.FileListAbsolute.txt
... | ... | @@ -0,0 +1,24 @@ |
1 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\ConsoleLog.exe | |
2 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\ConsoleLog.deps.json | |
3 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\ConsoleLog.runtimeconfig.json | |
4 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\ConsoleLog.runtimeconfig.dev.json | |
5 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\ConsoleLog.dll | |
6 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\ConsoleLog.pdb | |
7 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll | |
8 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\RestSharp.dll | |
9 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\System.Data.SqlClient.dll | |
10 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\System.Text.Json.dll | |
11 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\sni.dll | |
12 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\sni.dll | |
13 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\sni.dll | |
14 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll | |
15 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll | |
16 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\ConsoleLog.csproj.AssemblyReference.cache | |
17 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\ConsoleLog.GeneratedMSBuildEditorConfig.editorconfig | |
18 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\ConsoleLog.AssemblyInfoInputs.cache | |
19 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\ConsoleLog.AssemblyInfo.cs | |
20 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\ConsoleLog.csproj.CoreCompileInputs.cache | |
21 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\ConsoleLog.csproj.CopyComplete | |
22 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\ConsoleLog.dll | |
23 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\ConsoleLog.pdb | |
24 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\ConsoleLog.genruntimeconfig.cache |
+++ obj/Debug/netcoreapp3.1/ConsoleLog.dll
Binary file is not shown |
+++ obj/Debug/netcoreapp3.1/ConsoleLog.genruntimeconfig.cache
... | ... | @@ -0,0 +1,1 @@ |
1 | +9901d41b17de2d753976569f6bc58f678af48ac1 |
+++ obj/Debug/netcoreapp3.1/ConsoleLog.pdb
Binary file is not shown |
+++ obj/Debug/netcoreapp3.1/LogSendCSharp.csproj.AssemblyReference.cache
Binary file is not shown |
+++ obj/Debug/netcoreapp3.1/LogSendCSharp.csproj.CoreCompileInputs.cache
... | ... | @@ -0,0 +1,1 @@ |
1 | +76e45d67196461ff61f1407fc673d43a59e40092 |
+++ obj/Debug/netcoreapp3.1/LogSendCSharp.csproj.FileListAbsolute.txt
... | ... | @@ -0,0 +1,48 @@ |
1 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\LogSendCSharp.exe | |
2 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\LogSendCSharp.deps.json | |
3 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\LogSendCSharp.runtimeconfig.json | |
4 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\LogSendCSharp.runtimeconfig.dev.json | |
5 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\LogSendCSharp.dll | |
6 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\LogSendCSharp.pdb | |
7 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll | |
8 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\RestSharp.dll | |
9 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\System.Data.SqlClient.dll | |
10 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\System.Text.Json.dll | |
11 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\sni.dll | |
12 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\sni.dll | |
13 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\sni.dll | |
14 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll | |
15 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll | |
16 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\LogSendCSharp.csproj.AssemblyReference.cache | |
17 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\LogSendCSharp.GeneratedMSBuildEditorConfig.editorconfig | |
18 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\LogSendCSharp.AssemblyInfoInputs.cache | |
19 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\LogSendCSharp.AssemblyInfo.cs | |
20 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\LogSendCSharp.csproj.CoreCompileInputs.cache | |
21 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\LogSendCSharp.csproj.CopyComplete | |
22 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\LogSendCSharp.dll | |
23 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\LogSendCSharp.pdb | |
24 | +C:\Users\Signus\source\repos\ConsoleLog\ConsoleLog\obj\Debug\netcoreapp3.1\LogSendCSharp.genruntimeconfig.cache | |
25 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\LogSendCSharp.exe | |
26 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\LogSendCSharp.deps.json | |
27 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\LogSendCSharp.runtimeconfig.json | |
28 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\LogSendCSharp.runtimeconfig.dev.json | |
29 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\LogSendCSharp.dll | |
30 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\LogSendCSharp.pdb | |
31 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll | |
32 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\RestSharp.dll | |
33 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\System.Data.SqlClient.dll | |
34 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\System.Text.Json.dll | |
35 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\sni.dll | |
36 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\sni.dll | |
37 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\sni.dll | |
38 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll | |
39 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll | |
40 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\obj\Debug\netcoreapp3.1\LogSendCSharp.csproj.AssemblyReference.cache | |
41 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\obj\Debug\netcoreapp3.1\LogSendCSharp.GeneratedMSBuildEditorConfig.editorconfig | |
42 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\obj\Debug\netcoreapp3.1\LogSendCSharp.AssemblyInfoInputs.cache | |
43 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\obj\Debug\netcoreapp3.1\LogSendCSharp.AssemblyInfo.cs | |
44 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\obj\Debug\netcoreapp3.1\LogSendCSharp.csproj.CoreCompileInputs.cache | |
45 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\obj\Debug\netcoreapp3.1\LogSendCSharp.csproj.CopyComplete | |
46 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\obj\Debug\netcoreapp3.1\LogSendCSharp.dll | |
47 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\obj\Debug\netcoreapp3.1\LogSendCSharp.pdb | |
48 | +C:\Users\Signus\source\repos\ConsoleLog\LogSendCsharp\obj\Debug\netcoreapp3.1\LogSendCSharp.genruntimeconfig.cache |
+++ obj/Debug/netcoreapp3.1/LogSendCSharp.dll
Binary file is not shown |
+++ obj/Debug/netcoreapp3.1/LogSendCSharp.genruntimeconfig.cache
... | ... | @@ -0,0 +1,1 @@ |
1 | +d6c052cacfa29f611cb79fc28119ba61b730c251 |
+++ obj/Debug/netcoreapp3.1/LogSendCSharp.pdb
Binary file is not shown |
+++ obj/Debug/netcoreapp3.1/LogSendCsharp.AssemblyInfo.cs
... | ... | @@ -0,0 +1,23 @@ |
1 | +//------------------------------------------------------------------------------ | |
2 | +// <auto-generated> | |
3 | +// 이 코드는 도구를 사용하여 생성되었습니다. | |
4 | +// 런타임 버전:4.0.30319.42000 | |
5 | +// | |
6 | +// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 | |
7 | +// 이러한 변경 내용이 손실됩니다. | |
8 | +// </auto-generated> | |
9 | +//------------------------------------------------------------------------------ | |
10 | + | |
11 | +using System; | |
12 | +using System.Reflection; | |
13 | + | |
14 | +[assembly: System.Reflection.AssemblyCompanyAttribute("LogSendCSharp")] | |
15 | +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | |
16 | +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | |
17 | +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] | |
18 | +[assembly: System.Reflection.AssemblyProductAttribute("LogSendCSharp")] | |
19 | +[assembly: System.Reflection.AssemblyTitleAttribute("LogSendCSharp")] | |
20 | +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | |
21 | + | |
22 | +// MSBuild WriteCodeFragment 클래스에서 생성되었습니다. | |
23 | + |
+++ obj/Debug/netcoreapp3.1/LogSendCsharp.AssemblyInfoInputs.cache
... | ... | @@ -0,0 +1,1 @@ |
1 | +bb9c6cc4c31839aff8638a286bdcfc5b702c4200 |
+++ obj/Debug/netcoreapp3.1/LogSendCsharp.GeneratedMSBuildEditorConfig.editorconfig
... | ... | @@ -0,0 +1,3 @@ |
1 | +is_global = true | |
2 | +build_property.RootNamespace = LogSendCSharp | |
3 | +build_property.ProjectDir = C:\LogSendCSharp\ |
+++ obj/Debug/netcoreapp3.1/LogSendCsharp.assets.cache
Binary file is not shown |
+++ obj/Debug/netcoreapp3.1/apphost.exe
Binary file is not shown |
+++ obj/LogSendCSharp.csproj.nuget.dgspec.json
... | ... | @@ -0,0 +1,76 @@ |
1 | +{ | |
2 | + "format": 1, | |
3 | + "restore": { | |
4 | + "C:\\LogSendCSharp\\LogSendCSharp.csproj": {} | |
5 | + }, | |
6 | + "projects": { | |
7 | + "C:\\LogSendCSharp\\LogSendCSharp.csproj": { | |
8 | + "version": "1.0.0", | |
9 | + "restore": { | |
10 | + "projectUniqueName": "C:\\LogSendCSharp\\LogSendCSharp.csproj", | |
11 | + "projectName": "LogSendCSharp", | |
12 | + "projectPath": "C:\\LogSendCSharp\\LogSendCSharp.csproj", | |
13 | + "packagesPath": "C:\\Users\\Signus\\.nuget\\packages\\", | |
14 | + "outputPath": "C:\\LogSendCSharp\\obj\\", | |
15 | + "projectStyle": "PackageReference", | |
16 | + "configFilePaths": [ | |
17 | + "C:\\Users\\Signus\\AppData\\Roaming\\NuGet\\NuGet.Config", | |
18 | + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | |
19 | + ], | |
20 | + "originalTargetFrameworks": [ | |
21 | + "netcoreapp3.1" | |
22 | + ], | |
23 | + "sources": { | |
24 | + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, | |
25 | + "https://api.nuget.org/v3/index.json": {} | |
26 | + }, | |
27 | + "frameworks": { | |
28 | + "netcoreapp3.1": { | |
29 | + "targetAlias": "netcoreapp3.1", | |
30 | + "projectReferences": {} | |
31 | + } | |
32 | + }, | |
33 | + "warningProperties": { | |
34 | + "warnAsError": [ | |
35 | + "NU1605" | |
36 | + ] | |
37 | + } | |
38 | + }, | |
39 | + "frameworks": { | |
40 | + "netcoreapp3.1": { | |
41 | + "targetAlias": "netcoreapp3.1", | |
42 | + "dependencies": { | |
43 | + "Newtonsoft.Json": { | |
44 | + "target": "Package", | |
45 | + "version": "[13.0.1, )" | |
46 | + }, | |
47 | + "RestSharp": { | |
48 | + "target": "Package", | |
49 | + "version": "[108.0.1, )" | |
50 | + }, | |
51 | + "System.Data.SqlClient": { | |
52 | + "target": "Package", | |
53 | + "version": "[4.8.3, )" | |
54 | + } | |
55 | + }, | |
56 | + "imports": [ | |
57 | + "net461", | |
58 | + "net462", | |
59 | + "net47", | |
60 | + "net471", | |
61 | + "net472", | |
62 | + "net48" | |
63 | + ], | |
64 | + "assetTargetFallback": true, | |
65 | + "warn": true, | |
66 | + "frameworkReferences": { | |
67 | + "Microsoft.NETCore.App": { | |
68 | + "privateAssets": "all" | |
69 | + } | |
70 | + }, | |
71 | + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" | |
72 | + } | |
73 | + } | |
74 | + } | |
75 | + } | |
76 | +}(No newline at end of file) |
+++ obj/LogSendCSharp.csproj.nuget.g.props
... | ... | @@ -0,0 +1,15 @@ |
1 | +<?xml version="1.0" encoding="utf-8" standalone="no"?> | |
2 | +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 | + <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |
4 | + <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> | |
5 | + <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> | |
6 | + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> | |
7 | + <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> | |
8 | + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Signus\.nuget\packages\</NuGetPackageFolders> | |
9 | + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> | |
10 | + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.1</NuGetToolVersion> | |
11 | + </PropertyGroup> | |
12 | + <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |
13 | + <SourceRoot Include="C:\Users\Signus\.nuget\packages\" /> | |
14 | + </ItemGroup> | |
15 | +</Project>(No newline at end of file) |
+++ obj/LogSendCSharp.csproj.nuget.g.targets
... | ... | @@ -0,0 +1,2 @@ |
1 | +<?xml version="1.0" encoding="utf-8" standalone="no"?> | |
2 | +<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />(No newline at end of file) |
+++ obj/project.assets.json
... | ... | @@ -0,0 +1,626 @@ |
1 | +{ | |
2 | + "version": 3, | |
3 | + "targets": { | |
4 | + ".NETCoreApp,Version=v3.1": { | |
5 | + "Microsoft.NETCore.Platforms/3.1.0": { | |
6 | + "type": "package", | |
7 | + "compile": { | |
8 | + "lib/netstandard1.0/_._": {} | |
9 | + }, | |
10 | + "runtime": { | |
11 | + "lib/netstandard1.0/_._": {} | |
12 | + } | |
13 | + }, | |
14 | + "Microsoft.Win32.Registry/4.7.0": { | |
15 | + "type": "package", | |
16 | + "dependencies": { | |
17 | + "System.Security.AccessControl": "4.7.0", | |
18 | + "System.Security.Principal.Windows": "4.7.0" | |
19 | + }, | |
20 | + "compile": { | |
21 | + "ref/netstandard2.0/_._": {} | |
22 | + }, | |
23 | + "runtime": { | |
24 | + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} | |
25 | + }, | |
26 | + "runtimeTargets": { | |
27 | + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { | |
28 | + "assetType": "runtime", | |
29 | + "rid": "unix" | |
30 | + }, | |
31 | + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { | |
32 | + "assetType": "runtime", | |
33 | + "rid": "win" | |
34 | + } | |
35 | + } | |
36 | + }, | |
37 | + "Newtonsoft.Json/13.0.1": { | |
38 | + "type": "package", | |
39 | + "compile": { | |
40 | + "lib/netstandard2.0/Newtonsoft.Json.dll": {} | |
41 | + }, | |
42 | + "runtime": { | |
43 | + "lib/netstandard2.0/Newtonsoft.Json.dll": {} | |
44 | + } | |
45 | + }, | |
46 | + "RestSharp/108.0.1": { | |
47 | + "type": "package", | |
48 | + "dependencies": { | |
49 | + "System.Text.Json": "5.0.0" | |
50 | + }, | |
51 | + "compile": { | |
52 | + "lib/netstandard2.0/RestSharp.dll": {} | |
53 | + }, | |
54 | + "runtime": { | |
55 | + "lib/netstandard2.0/RestSharp.dll": {} | |
56 | + } | |
57 | + }, | |
58 | + "runtime.native.System.Data.SqlClient.sni/4.7.0": { | |
59 | + "type": "package", | |
60 | + "dependencies": { | |
61 | + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", | |
62 | + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", | |
63 | + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" | |
64 | + } | |
65 | + }, | |
66 | + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
67 | + "type": "package", | |
68 | + "runtimeTargets": { | |
69 | + "runtimes/win-arm64/native/sni.dll": { | |
70 | + "assetType": "native", | |
71 | + "rid": "win-arm64" | |
72 | + } | |
73 | + } | |
74 | + }, | |
75 | + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
76 | + "type": "package", | |
77 | + "runtimeTargets": { | |
78 | + "runtimes/win-x64/native/sni.dll": { | |
79 | + "assetType": "native", | |
80 | + "rid": "win-x64" | |
81 | + } | |
82 | + } | |
83 | + }, | |
84 | + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
85 | + "type": "package", | |
86 | + "runtimeTargets": { | |
87 | + "runtimes/win-x86/native/sni.dll": { | |
88 | + "assetType": "native", | |
89 | + "rid": "win-x86" | |
90 | + } | |
91 | + } | |
92 | + }, | |
93 | + "System.Data.SqlClient/4.8.3": { | |
94 | + "type": "package", | |
95 | + "dependencies": { | |
96 | + "Microsoft.Win32.Registry": "4.7.0", | |
97 | + "System.Security.Principal.Windows": "4.7.0", | |
98 | + "runtime.native.System.Data.SqlClient.sni": "4.7.0" | |
99 | + }, | |
100 | + "compile": { | |
101 | + "ref/netcoreapp2.1/System.Data.SqlClient.dll": {} | |
102 | + }, | |
103 | + "runtime": { | |
104 | + "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} | |
105 | + }, | |
106 | + "runtimeTargets": { | |
107 | + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { | |
108 | + "assetType": "runtime", | |
109 | + "rid": "unix" | |
110 | + }, | |
111 | + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { | |
112 | + "assetType": "runtime", | |
113 | + "rid": "win" | |
114 | + } | |
115 | + } | |
116 | + }, | |
117 | + "System.Security.AccessControl/4.7.0": { | |
118 | + "type": "package", | |
119 | + "dependencies": { | |
120 | + "Microsoft.NETCore.Platforms": "3.1.0", | |
121 | + "System.Security.Principal.Windows": "4.7.0" | |
122 | + }, | |
123 | + "compile": { | |
124 | + "ref/netstandard2.0/_._": {} | |
125 | + }, | |
126 | + "runtime": { | |
127 | + "lib/netstandard2.0/System.Security.AccessControl.dll": {} | |
128 | + }, | |
129 | + "runtimeTargets": { | |
130 | + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { | |
131 | + "assetType": "runtime", | |
132 | + "rid": "win" | |
133 | + } | |
134 | + } | |
135 | + }, | |
136 | + "System.Security.Principal.Windows/4.7.0": { | |
137 | + "type": "package", | |
138 | + "compile": { | |
139 | + "ref/netcoreapp3.0/_._": {} | |
140 | + }, | |
141 | + "runtime": { | |
142 | + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} | |
143 | + }, | |
144 | + "runtimeTargets": { | |
145 | + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { | |
146 | + "assetType": "runtime", | |
147 | + "rid": "unix" | |
148 | + }, | |
149 | + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { | |
150 | + "assetType": "runtime", | |
151 | + "rid": "win" | |
152 | + } | |
153 | + } | |
154 | + }, | |
155 | + "System.Text.Json/5.0.0": { | |
156 | + "type": "package", | |
157 | + "compile": { | |
158 | + "lib/netcoreapp3.0/System.Text.Json.dll": {} | |
159 | + }, | |
160 | + "runtime": { | |
161 | + "lib/netcoreapp3.0/System.Text.Json.dll": {} | |
162 | + } | |
163 | + } | |
164 | + } | |
165 | + }, | |
166 | + "libraries": { | |
167 | + "Microsoft.NETCore.Platforms/3.1.0": { | |
168 | + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", | |
169 | + "type": "package", | |
170 | + "path": "microsoft.netcore.platforms/3.1.0", | |
171 | + "files": [ | |
172 | + ".nupkg.metadata", | |
173 | + ".signature.p7s", | |
174 | + "LICENSE.TXT", | |
175 | + "THIRD-PARTY-NOTICES.TXT", | |
176 | + "lib/netstandard1.0/_._", | |
177 | + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", | |
178 | + "microsoft.netcore.platforms.nuspec", | |
179 | + "runtime.json", | |
180 | + "useSharedDesignerContext.txt", | |
181 | + "version.txt" | |
182 | + ] | |
183 | + }, | |
184 | + "Microsoft.Win32.Registry/4.7.0": { | |
185 | + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", | |
186 | + "type": "package", | |
187 | + "path": "microsoft.win32.registry/4.7.0", | |
188 | + "files": [ | |
189 | + ".nupkg.metadata", | |
190 | + ".signature.p7s", | |
191 | + "LICENSE.TXT", | |
192 | + "THIRD-PARTY-NOTICES.TXT", | |
193 | + "lib/net46/Microsoft.Win32.Registry.dll", | |
194 | + "lib/net461/Microsoft.Win32.Registry.dll", | |
195 | + "lib/net461/Microsoft.Win32.Registry.xml", | |
196 | + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", | |
197 | + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", | |
198 | + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", | |
199 | + "microsoft.win32.registry.4.7.0.nupkg.sha512", | |
200 | + "microsoft.win32.registry.nuspec", | |
201 | + "ref/net46/Microsoft.Win32.Registry.dll", | |
202 | + "ref/net461/Microsoft.Win32.Registry.dll", | |
203 | + "ref/net461/Microsoft.Win32.Registry.xml", | |
204 | + "ref/net472/Microsoft.Win32.Registry.dll", | |
205 | + "ref/net472/Microsoft.Win32.Registry.xml", | |
206 | + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", | |
207 | + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", | |
208 | + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", | |
209 | + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", | |
210 | + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", | |
211 | + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", | |
212 | + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", | |
213 | + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", | |
214 | + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", | |
215 | + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", | |
216 | + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", | |
217 | + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", | |
218 | + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", | |
219 | + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", | |
220 | + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", | |
221 | + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", | |
222 | + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", | |
223 | + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", | |
224 | + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", | |
225 | + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", | |
226 | + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", | |
227 | + "useSharedDesignerContext.txt", | |
228 | + "version.txt" | |
229 | + ] | |
230 | + }, | |
231 | + "Newtonsoft.Json/13.0.1": { | |
232 | + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", | |
233 | + "type": "package", | |
234 | + "path": "newtonsoft.json/13.0.1", | |
235 | + "files": [ | |
236 | + ".nupkg.metadata", | |
237 | + ".signature.p7s", | |
238 | + "LICENSE.md", | |
239 | + "lib/net20/Newtonsoft.Json.dll", | |
240 | + "lib/net20/Newtonsoft.Json.xml", | |
241 | + "lib/net35/Newtonsoft.Json.dll", | |
242 | + "lib/net35/Newtonsoft.Json.xml", | |
243 | + "lib/net40/Newtonsoft.Json.dll", | |
244 | + "lib/net40/Newtonsoft.Json.xml", | |
245 | + "lib/net45/Newtonsoft.Json.dll", | |
246 | + "lib/net45/Newtonsoft.Json.xml", | |
247 | + "lib/netstandard1.0/Newtonsoft.Json.dll", | |
248 | + "lib/netstandard1.0/Newtonsoft.Json.xml", | |
249 | + "lib/netstandard1.3/Newtonsoft.Json.dll", | |
250 | + "lib/netstandard1.3/Newtonsoft.Json.xml", | |
251 | + "lib/netstandard2.0/Newtonsoft.Json.dll", | |
252 | + "lib/netstandard2.0/Newtonsoft.Json.xml", | |
253 | + "newtonsoft.json.13.0.1.nupkg.sha512", | |
254 | + "newtonsoft.json.nuspec", | |
255 | + "packageIcon.png" | |
256 | + ] | |
257 | + }, | |
258 | + "RestSharp/108.0.1": { | |
259 | + "sha512": "XKwuwWq7A4dxZ8l9QkS2+ePLJ9ImmLaJSeFO6H2kpII4Us4n1NRs4w3c//8H2BYpL1XqBE8nmsd9aNCVBwXmOA==", | |
260 | + "type": "package", | |
261 | + "path": "restsharp/108.0.1", | |
262 | + "files": [ | |
263 | + ".nupkg.metadata", | |
264 | + ".signature.p7s", | |
265 | + "lib/net5.0/RestSharp.dll", | |
266 | + "lib/net5.0/RestSharp.xml", | |
267 | + "lib/net6.0/RestSharp.dll", | |
268 | + "lib/net6.0/RestSharp.xml", | |
269 | + "lib/netstandard2.0/RestSharp.dll", | |
270 | + "lib/netstandard2.0/RestSharp.xml", | |
271 | + "restsharp.108.0.1.nupkg.sha512", | |
272 | + "restsharp.nuspec", | |
273 | + "restsharp.png" | |
274 | + ] | |
275 | + }, | |
276 | + "runtime.native.System.Data.SqlClient.sni/4.7.0": { | |
277 | + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", | |
278 | + "type": "package", | |
279 | + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", | |
280 | + "files": [ | |
281 | + ".nupkg.metadata", | |
282 | + ".signature.p7s", | |
283 | + "LICENSE.TXT", | |
284 | + "THIRD-PARTY-NOTICES.TXT", | |
285 | + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", | |
286 | + "runtime.native.system.data.sqlclient.sni.nuspec", | |
287 | + "useSharedDesignerContext.txt", | |
288 | + "version.txt" | |
289 | + ] | |
290 | + }, | |
291 | + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
292 | + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", | |
293 | + "type": "package", | |
294 | + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", | |
295 | + "files": [ | |
296 | + ".nupkg.metadata", | |
297 | + ".signature.p7s", | |
298 | + "ThirdPartyNotices.txt", | |
299 | + "dotnet_library_license.txt", | |
300 | + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", | |
301 | + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", | |
302 | + "runtimes/win-arm64/native/sni.dll", | |
303 | + "useSharedDesignerContext.txt", | |
304 | + "version.txt" | |
305 | + ] | |
306 | + }, | |
307 | + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
308 | + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", | |
309 | + "type": "package", | |
310 | + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", | |
311 | + "files": [ | |
312 | + ".nupkg.metadata", | |
313 | + ".signature.p7s", | |
314 | + "ThirdPartyNotices.txt", | |
315 | + "dotnet_library_license.txt", | |
316 | + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", | |
317 | + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", | |
318 | + "runtimes/win-x64/native/sni.dll", | |
319 | + "useSharedDesignerContext.txt", | |
320 | + "version.txt" | |
321 | + ] | |
322 | + }, | |
323 | + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { | |
324 | + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", | |
325 | + "type": "package", | |
326 | + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", | |
327 | + "files": [ | |
328 | + ".nupkg.metadata", | |
329 | + ".signature.p7s", | |
330 | + "ThirdPartyNotices.txt", | |
331 | + "dotnet_library_license.txt", | |
332 | + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", | |
333 | + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", | |
334 | + "runtimes/win-x86/native/sni.dll", | |
335 | + "useSharedDesignerContext.txt", | |
336 | + "version.txt" | |
337 | + ] | |
338 | + }, | |
339 | + "System.Data.SqlClient/4.8.3": { | |
340 | + "sha512": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", | |
341 | + "type": "package", | |
342 | + "path": "system.data.sqlclient/4.8.3", | |
343 | + "files": [ | |
344 | + ".nupkg.metadata", | |
345 | + ".signature.p7s", | |
346 | + "Icon.png", | |
347 | + "LICENSE.TXT", | |
348 | + "THIRD-PARTY-NOTICES.TXT", | |
349 | + "lib/MonoAndroid10/_._", | |
350 | + "lib/MonoTouch10/_._", | |
351 | + "lib/net451/System.Data.SqlClient.dll", | |
352 | + "lib/net46/System.Data.SqlClient.dll", | |
353 | + "lib/net461/System.Data.SqlClient.dll", | |
354 | + "lib/net461/System.Data.SqlClient.xml", | |
355 | + "lib/netcoreapp2.1/System.Data.SqlClient.dll", | |
356 | + "lib/netcoreapp2.1/System.Data.SqlClient.xml", | |
357 | + "lib/netstandard1.2/System.Data.SqlClient.dll", | |
358 | + "lib/netstandard1.2/System.Data.SqlClient.xml", | |
359 | + "lib/netstandard1.3/System.Data.SqlClient.dll", | |
360 | + "lib/netstandard1.3/System.Data.SqlClient.xml", | |
361 | + "lib/netstandard2.0/System.Data.SqlClient.dll", | |
362 | + "lib/netstandard2.0/System.Data.SqlClient.xml", | |
363 | + "lib/xamarinios10/_._", | |
364 | + "lib/xamarinmac20/_._", | |
365 | + "lib/xamarintvos10/_._", | |
366 | + "lib/xamarinwatchos10/_._", | |
367 | + "ref/MonoAndroid10/_._", | |
368 | + "ref/MonoTouch10/_._", | |
369 | + "ref/net451/System.Data.SqlClient.dll", | |
370 | + "ref/net46/System.Data.SqlClient.dll", | |
371 | + "ref/net461/System.Data.SqlClient.dll", | |
372 | + "ref/net461/System.Data.SqlClient.xml", | |
373 | + "ref/netcoreapp2.1/System.Data.SqlClient.dll", | |
374 | + "ref/netcoreapp2.1/System.Data.SqlClient.xml", | |
375 | + "ref/netstandard1.2/System.Data.SqlClient.dll", | |
376 | + "ref/netstandard1.2/System.Data.SqlClient.xml", | |
377 | + "ref/netstandard1.2/de/System.Data.SqlClient.xml", | |
378 | + "ref/netstandard1.2/es/System.Data.SqlClient.xml", | |
379 | + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", | |
380 | + "ref/netstandard1.2/it/System.Data.SqlClient.xml", | |
381 | + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", | |
382 | + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", | |
383 | + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", | |
384 | + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", | |
385 | + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", | |
386 | + "ref/netstandard1.3/System.Data.SqlClient.dll", | |
387 | + "ref/netstandard1.3/System.Data.SqlClient.xml", | |
388 | + "ref/netstandard1.3/de/System.Data.SqlClient.xml", | |
389 | + "ref/netstandard1.3/es/System.Data.SqlClient.xml", | |
390 | + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", | |
391 | + "ref/netstandard1.3/it/System.Data.SqlClient.xml", | |
392 | + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", | |
393 | + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", | |
394 | + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", | |
395 | + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", | |
396 | + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", | |
397 | + "ref/netstandard2.0/System.Data.SqlClient.dll", | |
398 | + "ref/netstandard2.0/System.Data.SqlClient.xml", | |
399 | + "ref/xamarinios10/_._", | |
400 | + "ref/xamarinmac20/_._", | |
401 | + "ref/xamarintvos10/_._", | |
402 | + "ref/xamarinwatchos10/_._", | |
403 | + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", | |
404 | + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", | |
405 | + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", | |
406 | + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", | |
407 | + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", | |
408 | + "runtimes/win/lib/net451/System.Data.SqlClient.dll", | |
409 | + "runtimes/win/lib/net46/System.Data.SqlClient.dll", | |
410 | + "runtimes/win/lib/net461/System.Data.SqlClient.dll", | |
411 | + "runtimes/win/lib/net461/System.Data.SqlClient.xml", | |
412 | + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", | |
413 | + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", | |
414 | + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", | |
415 | + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", | |
416 | + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", | |
417 | + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", | |
418 | + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", | |
419 | + "system.data.sqlclient.4.8.3.nupkg.sha512", | |
420 | + "system.data.sqlclient.nuspec", | |
421 | + "useSharedDesignerContext.txt", | |
422 | + "version.txt" | |
423 | + ] | |
424 | + }, | |
425 | + "System.Security.AccessControl/4.7.0": { | |
426 | + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", | |
427 | + "type": "package", | |
428 | + "path": "system.security.accesscontrol/4.7.0", | |
429 | + "files": [ | |
430 | + ".nupkg.metadata", | |
431 | + ".signature.p7s", | |
432 | + "LICENSE.TXT", | |
433 | + "THIRD-PARTY-NOTICES.TXT", | |
434 | + "lib/net46/System.Security.AccessControl.dll", | |
435 | + "lib/net461/System.Security.AccessControl.dll", | |
436 | + "lib/net461/System.Security.AccessControl.xml", | |
437 | + "lib/netstandard1.3/System.Security.AccessControl.dll", | |
438 | + "lib/netstandard2.0/System.Security.AccessControl.dll", | |
439 | + "lib/netstandard2.0/System.Security.AccessControl.xml", | |
440 | + "lib/uap10.0.16299/_._", | |
441 | + "ref/net46/System.Security.AccessControl.dll", | |
442 | + "ref/net461/System.Security.AccessControl.dll", | |
443 | + "ref/net461/System.Security.AccessControl.xml", | |
444 | + "ref/netstandard1.3/System.Security.AccessControl.dll", | |
445 | + "ref/netstandard1.3/System.Security.AccessControl.xml", | |
446 | + "ref/netstandard1.3/de/System.Security.AccessControl.xml", | |
447 | + "ref/netstandard1.3/es/System.Security.AccessControl.xml", | |
448 | + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", | |
449 | + "ref/netstandard1.3/it/System.Security.AccessControl.xml", | |
450 | + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", | |
451 | + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", | |
452 | + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", | |
453 | + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", | |
454 | + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", | |
455 | + "ref/netstandard2.0/System.Security.AccessControl.dll", | |
456 | + "ref/netstandard2.0/System.Security.AccessControl.xml", | |
457 | + "ref/uap10.0.16299/_._", | |
458 | + "runtimes/win/lib/net46/System.Security.AccessControl.dll", | |
459 | + "runtimes/win/lib/net461/System.Security.AccessControl.dll", | |
460 | + "runtimes/win/lib/net461/System.Security.AccessControl.xml", | |
461 | + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", | |
462 | + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", | |
463 | + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", | |
464 | + "runtimes/win/lib/uap10.0.16299/_._", | |
465 | + "system.security.accesscontrol.4.7.0.nupkg.sha512", | |
466 | + "system.security.accesscontrol.nuspec", | |
467 | + "useSharedDesignerContext.txt", | |
468 | + "version.txt" | |
469 | + ] | |
470 | + }, | |
471 | + "System.Security.Principal.Windows/4.7.0": { | |
472 | + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", | |
473 | + "type": "package", | |
474 | + "path": "system.security.principal.windows/4.7.0", | |
475 | + "files": [ | |
476 | + ".nupkg.metadata", | |
477 | + ".signature.p7s", | |
478 | + "LICENSE.TXT", | |
479 | + "THIRD-PARTY-NOTICES.TXT", | |
480 | + "lib/net46/System.Security.Principal.Windows.dll", | |
481 | + "lib/net461/System.Security.Principal.Windows.dll", | |
482 | + "lib/net461/System.Security.Principal.Windows.xml", | |
483 | + "lib/netstandard1.3/System.Security.Principal.Windows.dll", | |
484 | + "lib/netstandard2.0/System.Security.Principal.Windows.dll", | |
485 | + "lib/netstandard2.0/System.Security.Principal.Windows.xml", | |
486 | + "lib/uap10.0.16299/_._", | |
487 | + "ref/net46/System.Security.Principal.Windows.dll", | |
488 | + "ref/net461/System.Security.Principal.Windows.dll", | |
489 | + "ref/net461/System.Security.Principal.Windows.xml", | |
490 | + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", | |
491 | + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", | |
492 | + "ref/netstandard1.3/System.Security.Principal.Windows.dll", | |
493 | + "ref/netstandard1.3/System.Security.Principal.Windows.xml", | |
494 | + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", | |
495 | + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", | |
496 | + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", | |
497 | + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", | |
498 | + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", | |
499 | + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", | |
500 | + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", | |
501 | + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", | |
502 | + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", | |
503 | + "ref/netstandard2.0/System.Security.Principal.Windows.dll", | |
504 | + "ref/netstandard2.0/System.Security.Principal.Windows.xml", | |
505 | + "ref/uap10.0.16299/_._", | |
506 | + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", | |
507 | + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", | |
508 | + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", | |
509 | + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", | |
510 | + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", | |
511 | + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", | |
512 | + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", | |
513 | + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", | |
514 | + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", | |
515 | + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", | |
516 | + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", | |
517 | + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", | |
518 | + "runtimes/win/lib/uap10.0.16299/_._", | |
519 | + "system.security.principal.windows.4.7.0.nupkg.sha512", | |
520 | + "system.security.principal.windows.nuspec", | |
521 | + "useSharedDesignerContext.txt", | |
522 | + "version.txt" | |
523 | + ] | |
524 | + }, | |
525 | + "System.Text.Json/5.0.0": { | |
526 | + "sha512": "+luxMQNZ2WqeffBU7Ml6njIvxc8169NW2oU+ygNudXQGZiarjE7DOtN7bILiQjTZjkmwwRZGTtLzmdrSI/Ustw==", | |
527 | + "type": "package", | |
528 | + "path": "system.text.json/5.0.0", | |
529 | + "files": [ | |
530 | + ".nupkg.metadata", | |
531 | + ".signature.p7s", | |
532 | + "Icon.png", | |
533 | + "LICENSE.TXT", | |
534 | + "THIRD-PARTY-NOTICES.TXT", | |
535 | + "lib/net461/System.Text.Json.dll", | |
536 | + "lib/net461/System.Text.Json.xml", | |
537 | + "lib/netcoreapp3.0/System.Text.Json.dll", | |
538 | + "lib/netcoreapp3.0/System.Text.Json.xml", | |
539 | + "lib/netstandard2.0/System.Text.Json.dll", | |
540 | + "lib/netstandard2.0/System.Text.Json.xml", | |
541 | + "system.text.json.5.0.0.nupkg.sha512", | |
542 | + "system.text.json.nuspec", | |
543 | + "useSharedDesignerContext.txt", | |
544 | + "version.txt" | |
545 | + ] | |
546 | + } | |
547 | + }, | |
548 | + "projectFileDependencyGroups": { | |
549 | + ".NETCoreApp,Version=v3.1": [ | |
550 | + "Newtonsoft.Json >= 13.0.1", | |
551 | + "RestSharp >= 108.0.1", | |
552 | + "System.Data.SqlClient >= 4.8.3" | |
553 | + ] | |
554 | + }, | |
555 | + "packageFolders": { | |
556 | + "C:\\Users\\Signus\\.nuget\\packages\\": {} | |
557 | + }, | |
558 | + "project": { | |
559 | + "version": "1.0.0", | |
560 | + "restore": { | |
561 | + "projectUniqueName": "C:\\LogSendCSharp\\LogSendCSharp.csproj", | |
562 | + "projectName": "LogSendCSharp", | |
563 | + "projectPath": "C:\\LogSendCSharp\\LogSendCSharp.csproj", | |
564 | + "packagesPath": "C:\\Users\\Signus\\.nuget\\packages\\", | |
565 | + "outputPath": "C:\\LogSendCSharp\\obj\\", | |
566 | + "projectStyle": "PackageReference", | |
567 | + "configFilePaths": [ | |
568 | + "C:\\Users\\Signus\\AppData\\Roaming\\NuGet\\NuGet.Config", | |
569 | + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" | |
570 | + ], | |
571 | + "originalTargetFrameworks": [ | |
572 | + "netcoreapp3.1" | |
573 | + ], | |
574 | + "sources": { | |
575 | + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, | |
576 | + "https://api.nuget.org/v3/index.json": {} | |
577 | + }, | |
578 | + "frameworks": { | |
579 | + "netcoreapp3.1": { | |
580 | + "targetAlias": "netcoreapp3.1", | |
581 | + "projectReferences": {} | |
582 | + } | |
583 | + }, | |
584 | + "warningProperties": { | |
585 | + "warnAsError": [ | |
586 | + "NU1605" | |
587 | + ] | |
588 | + } | |
589 | + }, | |
590 | + "frameworks": { | |
591 | + "netcoreapp3.1": { | |
592 | + "targetAlias": "netcoreapp3.1", | |
593 | + "dependencies": { | |
594 | + "Newtonsoft.Json": { | |
595 | + "target": "Package", | |
596 | + "version": "[13.0.1, )" | |
597 | + }, | |
598 | + "RestSharp": { | |
599 | + "target": "Package", | |
600 | + "version": "[108.0.1, )" | |
601 | + }, | |
602 | + "System.Data.SqlClient": { | |
603 | + "target": "Package", | |
604 | + "version": "[4.8.3, )" | |
605 | + } | |
606 | + }, | |
607 | + "imports": [ | |
608 | + "net461", | |
609 | + "net462", | |
610 | + "net47", | |
611 | + "net471", | |
612 | + "net472", | |
613 | + "net48" | |
614 | + ], | |
615 | + "assetTargetFallback": true, | |
616 | + "warn": true, | |
617 | + "frameworkReferences": { | |
618 | + "Microsoft.NETCore.App": { | |
619 | + "privateAssets": "all" | |
620 | + } | |
621 | + }, | |
622 | + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" | |
623 | + } | |
624 | + } | |
625 | + } | |
626 | +}(No newline at end of file) |
+++ obj/project.nuget.cache
... | ... | @@ -0,0 +1,21 @@ |
1 | +{ | |
2 | + "version": 2, | |
3 | + "dgSpecHash": "WbN4DIWgTiWcegIBq2hRQ8Ba3WGEqC4j9l+MEVPEuRFSBp1Dl72PCV3ISiD7NFxB6J0SxR6HJLBD6swRBKgNew==", | |
4 | + "success": true, | |
5 | + "projectFilePath": "C:\\LogSendCSharp\\LogSendCSharp.csproj", | |
6 | + "expectedPackageFiles": [ | |
7 | + "C:\\Users\\Signus\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", | |
8 | + "C:\\Users\\Signus\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", | |
9 | + "C:\\Users\\Signus\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", | |
10 | + "C:\\Users\\Signus\\.nuget\\packages\\restsharp\\108.0.1\\restsharp.108.0.1.nupkg.sha512", | |
11 | + "C:\\Users\\Signus\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", | |
12 | + "C:\\Users\\Signus\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", | |
13 | + "C:\\Users\\Signus\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", | |
14 | + "C:\\Users\\Signus\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", | |
15 | + "C:\\Users\\Signus\\.nuget\\packages\\system.data.sqlclient\\4.8.3\\system.data.sqlclient.4.8.3.nupkg.sha512", | |
16 | + "C:\\Users\\Signus\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", | |
17 | + "C:\\Users\\Signus\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", | |
18 | + "C:\\Users\\Signus\\.nuget\\packages\\system.text.json\\5.0.0\\system.text.json.5.0.0.nupkg.sha512" | |
19 | + ], | |
20 | + "logs": [] | |
21 | +}(No newline at end of file) |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?