Skip to content

Commit 354962c

Browse files
authored
Merge pull request #699 from adamralph/add-lock-files
add lock files
2 parents dfe400d + 2fa4d5e commit 354962c

File tree

5 files changed

+283
-0
lines changed

5 files changed

+283
-0
lines changed

.cspell.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"words": [
1515
"ADAMRALPH",
1616
"analyzer",
17+
"analyzers",
1718
"autobuild",
1819
"codeql",
1920
"cref",
@@ -25,6 +26,7 @@
2526
"markdownlint",
2627
"MyGet",
2728
"netstandard",
29+
"Newtonsoft",
2830
"NOLOGO",
2931
"NuGet",
3032
"nupkg",
@@ -34,6 +36,8 @@
3436
"refs",
3537
"Robocopy",
3638
"SHFMT",
39+
"simpleexec",
40+
"simpleexectester",
3741
"xunit"
3842
]
3943
}

Directory.Build.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
<!-- workaround for https://github.com/dotnet/roslyn/issues/41640 -->
1111
<NoWarn>EnableGenerateDocumentationFile</NoWarn>
1212
<Nullable>enable</Nullable>
13+
<RestoreLockedMode Condition="'$(CI)' != ''">true</RestoreLockedMode>
14+
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
1315
</PropertyGroup>
1416

1517
<PropertyGroup Condition="'$(CI)' != ''">

SimpleExec/packages.lock.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"version": 1,
3+
"dependencies": {
4+
"net8.0": {
5+
"Microsoft.CodeAnalysis.PublicApiAnalyzers": {
6+
"type": "Direct",
7+
"requested": "[3.3.4, )",
8+
"resolved": "3.3.4",
9+
"contentHash": "kNLTfXtXUWDHVt5iaPkkiPuyHYlMgLI6SOFT4w88bfeI2vqSeGgHunFkdvlaCM8RDfcY0t2+jnesQtidRJJ/DA=="
10+
},
11+
"MinVer": {
12+
"type": "Direct",
13+
"requested": "[6.1.0-beta.1, )",
14+
"resolved": "6.1.0-beta.1",
15+
"contentHash": "7G+74w2V7Cd9wy6JmUuRsDY/lskO9smQNlp9rF6BJr70RTQb6odJ3n6Oau23/eBuvQjI6vy4bVbQPZvDFey01g=="
16+
}
17+
},
18+
"net9.0": {
19+
"Microsoft.CodeAnalysis.PublicApiAnalyzers": {
20+
"type": "Direct",
21+
"requested": "[3.3.4, )",
22+
"resolved": "3.3.4",
23+
"contentHash": "kNLTfXtXUWDHVt5iaPkkiPuyHYlMgLI6SOFT4w88bfeI2vqSeGgHunFkdvlaCM8RDfcY0t2+jnesQtidRJJ/DA=="
24+
},
25+
"MinVer": {
26+
"type": "Direct",
27+
"requested": "[6.1.0-beta.1, )",
28+
"resolved": "6.1.0-beta.1",
29+
"contentHash": "7G+74w2V7Cd9wy6JmUuRsDY/lskO9smQNlp9rF6BJr70RTQb6odJ3n6Oau23/eBuvQjI6vy4bVbQPZvDFey01g=="
30+
}
31+
}
32+
}
33+
}

SimpleExecTester/packages.lock.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"version": 1,
3+
"dependencies": {
4+
"net8.0": {},
5+
"net9.0": {}
6+
}
7+
}

SimpleExecTests/packages.lock.json

Lines changed: 237 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,237 @@
1+
{
2+
"version": 1,
3+
"dependencies": {
4+
"net8.0": {
5+
"GitHubActionsTestLogger": {
6+
"type": "Direct",
7+
"requested": "[2.4.1, )",
8+
"resolved": "2.4.1",
9+
"contentHash": "SH1ar/kg36CggzMqLUDRoUqR8SSjK/JiQ2JS8MYg8u0RCLDkkDEbPGIN91omOPx9f2GuDqsxxofSdgsQje3Xuw==",
10+
"dependencies": {
11+
"Microsoft.TestPlatform.ObjectModel": "17.10.0"
12+
}
13+
},
14+
"Microsoft.NET.Test.Sdk": {
15+
"type": "Direct",
16+
"requested": "[17.12.0, )",
17+
"resolved": "17.12.0",
18+
"contentHash": "kt/PKBZ91rFCWxVIJZSgVLk+YR+4KxTuHf799ho8WNiK5ZQpJNAEZCAWX86vcKrs+DiYjiibpYKdGZP6+/N17w==",
19+
"dependencies": {
20+
"Microsoft.CodeCoverage": "17.12.0",
21+
"Microsoft.TestPlatform.TestHost": "17.12.0"
22+
}
23+
},
24+
"xunit": {
25+
"type": "Direct",
26+
"requested": "[2.9.3, )",
27+
"resolved": "2.9.3",
28+
"contentHash": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==",
29+
"dependencies": {
30+
"xunit.analyzers": "1.18.0",
31+
"xunit.assert": "2.9.3",
32+
"xunit.core": "[2.9.3]"
33+
}
34+
},
35+
"xunit.runner.visualstudio": {
36+
"type": "Direct",
37+
"requested": "[3.0.2, )",
38+
"resolved": "3.0.2",
39+
"contentHash": "oXbusR6iPq0xlqoikjdLvzh+wQDkMv9If58myz9MEzldS4nIcp442Btgs2sWbYWV+caEluMe2pQCZ0hUZgPiow=="
40+
},
41+
"Microsoft.CodeCoverage": {
42+
"type": "Transitive",
43+
"resolved": "17.12.0",
44+
"contentHash": "4svMznBd5JM21JIG2xZKGNanAHNXplxf/kQDFfLHXQ3OnpJkayRK/TjacFjA+EYmoyuNXHo/sOETEfcYtAzIrA=="
45+
},
46+
"Microsoft.TestPlatform.ObjectModel": {
47+
"type": "Transitive",
48+
"resolved": "17.12.0",
49+
"contentHash": "TDqkTKLfQuAaPcEb3pDDWnh7b3SyZF+/W9OZvWFp6eJCIiiYFdSB6taE2I6tWrFw5ywhzOb6sreoGJTI6m3rSQ==",
50+
"dependencies": {
51+
"System.Reflection.Metadata": "1.6.0"
52+
}
53+
},
54+
"Microsoft.TestPlatform.TestHost": {
55+
"type": "Transitive",
56+
"resolved": "17.12.0",
57+
"contentHash": "MiPEJQNyADfwZ4pJNpQex+t9/jOClBGMiCiVVFuELCMSX2nmNfvUor3uFVxNNCg30uxDP8JDYfPnMXQzsfzYyg==",
58+
"dependencies": {
59+
"Microsoft.TestPlatform.ObjectModel": "17.12.0",
60+
"Newtonsoft.Json": "13.0.1"
61+
}
62+
},
63+
"Newtonsoft.Json": {
64+
"type": "Transitive",
65+
"resolved": "13.0.1",
66+
"contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A=="
67+
},
68+
"System.Reflection.Metadata": {
69+
"type": "Transitive",
70+
"resolved": "1.6.0",
71+
"contentHash": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ=="
72+
},
73+
"xunit.abstractions": {
74+
"type": "Transitive",
75+
"resolved": "2.0.3",
76+
"contentHash": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg=="
77+
},
78+
"xunit.analyzers": {
79+
"type": "Transitive",
80+
"resolved": "1.18.0",
81+
"contentHash": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ=="
82+
},
83+
"xunit.assert": {
84+
"type": "Transitive",
85+
"resolved": "2.9.3",
86+
"contentHash": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA=="
87+
},
88+
"xunit.core": {
89+
"type": "Transitive",
90+
"resolved": "2.9.3",
91+
"contentHash": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==",
92+
"dependencies": {
93+
"xunit.extensibility.core": "[2.9.3]",
94+
"xunit.extensibility.execution": "[2.9.3]"
95+
}
96+
},
97+
"xunit.extensibility.core": {
98+
"type": "Transitive",
99+
"resolved": "2.9.3",
100+
"contentHash": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==",
101+
"dependencies": {
102+
"xunit.abstractions": "2.0.3"
103+
}
104+
},
105+
"xunit.extensibility.execution": {
106+
"type": "Transitive",
107+
"resolved": "2.9.3",
108+
"contentHash": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==",
109+
"dependencies": {
110+
"xunit.extensibility.core": "[2.9.3]"
111+
}
112+
},
113+
"simpleexec": {
114+
"type": "Project"
115+
},
116+
"simpleexectester": {
117+
"type": "Project"
118+
}
119+
},
120+
"net9.0": {
121+
"GitHubActionsTestLogger": {
122+
"type": "Direct",
123+
"requested": "[2.4.1, )",
124+
"resolved": "2.4.1",
125+
"contentHash": "SH1ar/kg36CggzMqLUDRoUqR8SSjK/JiQ2JS8MYg8u0RCLDkkDEbPGIN91omOPx9f2GuDqsxxofSdgsQje3Xuw==",
126+
"dependencies": {
127+
"Microsoft.TestPlatform.ObjectModel": "17.10.0"
128+
}
129+
},
130+
"Microsoft.NET.Test.Sdk": {
131+
"type": "Direct",
132+
"requested": "[17.12.0, )",
133+
"resolved": "17.12.0",
134+
"contentHash": "kt/PKBZ91rFCWxVIJZSgVLk+YR+4KxTuHf799ho8WNiK5ZQpJNAEZCAWX86vcKrs+DiYjiibpYKdGZP6+/N17w==",
135+
"dependencies": {
136+
"Microsoft.CodeCoverage": "17.12.0",
137+
"Microsoft.TestPlatform.TestHost": "17.12.0"
138+
}
139+
},
140+
"xunit": {
141+
"type": "Direct",
142+
"requested": "[2.9.3, )",
143+
"resolved": "2.9.3",
144+
"contentHash": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==",
145+
"dependencies": {
146+
"xunit.analyzers": "1.18.0",
147+
"xunit.assert": "2.9.3",
148+
"xunit.core": "[2.9.3]"
149+
}
150+
},
151+
"xunit.runner.visualstudio": {
152+
"type": "Direct",
153+
"requested": "[3.0.2, )",
154+
"resolved": "3.0.2",
155+
"contentHash": "oXbusR6iPq0xlqoikjdLvzh+wQDkMv9If58myz9MEzldS4nIcp442Btgs2sWbYWV+caEluMe2pQCZ0hUZgPiow=="
156+
},
157+
"Microsoft.CodeCoverage": {
158+
"type": "Transitive",
159+
"resolved": "17.12.0",
160+
"contentHash": "4svMznBd5JM21JIG2xZKGNanAHNXplxf/kQDFfLHXQ3OnpJkayRK/TjacFjA+EYmoyuNXHo/sOETEfcYtAzIrA=="
161+
},
162+
"Microsoft.TestPlatform.ObjectModel": {
163+
"type": "Transitive",
164+
"resolved": "17.12.0",
165+
"contentHash": "TDqkTKLfQuAaPcEb3pDDWnh7b3SyZF+/W9OZvWFp6eJCIiiYFdSB6taE2I6tWrFw5ywhzOb6sreoGJTI6m3rSQ==",
166+
"dependencies": {
167+
"System.Reflection.Metadata": "1.6.0"
168+
}
169+
},
170+
"Microsoft.TestPlatform.TestHost": {
171+
"type": "Transitive",
172+
"resolved": "17.12.0",
173+
"contentHash": "MiPEJQNyADfwZ4pJNpQex+t9/jOClBGMiCiVVFuELCMSX2nmNfvUor3uFVxNNCg30uxDP8JDYfPnMXQzsfzYyg==",
174+
"dependencies": {
175+
"Microsoft.TestPlatform.ObjectModel": "17.12.0",
176+
"Newtonsoft.Json": "13.0.1"
177+
}
178+
},
179+
"Newtonsoft.Json": {
180+
"type": "Transitive",
181+
"resolved": "13.0.1",
182+
"contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A=="
183+
},
184+
"System.Reflection.Metadata": {
185+
"type": "Transitive",
186+
"resolved": "1.6.0",
187+
"contentHash": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ=="
188+
},
189+
"xunit.abstractions": {
190+
"type": "Transitive",
191+
"resolved": "2.0.3",
192+
"contentHash": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg=="
193+
},
194+
"xunit.analyzers": {
195+
"type": "Transitive",
196+
"resolved": "1.18.0",
197+
"contentHash": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ=="
198+
},
199+
"xunit.assert": {
200+
"type": "Transitive",
201+
"resolved": "2.9.3",
202+
"contentHash": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA=="
203+
},
204+
"xunit.core": {
205+
"type": "Transitive",
206+
"resolved": "2.9.3",
207+
"contentHash": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==",
208+
"dependencies": {
209+
"xunit.extensibility.core": "[2.9.3]",
210+
"xunit.extensibility.execution": "[2.9.3]"
211+
}
212+
},
213+
"xunit.extensibility.core": {
214+
"type": "Transitive",
215+
"resolved": "2.9.3",
216+
"contentHash": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==",
217+
"dependencies": {
218+
"xunit.abstractions": "2.0.3"
219+
}
220+
},
221+
"xunit.extensibility.execution": {
222+
"type": "Transitive",
223+
"resolved": "2.9.3",
224+
"contentHash": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==",
225+
"dependencies": {
226+
"xunit.extensibility.core": "[2.9.3]"
227+
}
228+
},
229+
"simpleexec": {
230+
"type": "Project"
231+
},
232+
"simpleexectester": {
233+
"type": "Project"
234+
}
235+
}
236+
}
237+
}

0 commit comments

Comments
 (0)