dependabot-nuget 0.379.0 → 0.380.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d1e2d0fc0dbdb9ca5edd820796d80e93ff3508a43ec0a21e25be1ca9a296dcd
|
|
4
|
+
data.tar.gz: 77f9feddc3e1f6a42a72770aef37989b081b19c4d721b4131b0c575a1cc27ae6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ac9681cf7e3f0e093c8bda609e7706b37bc5d8c2299c8dd8f0be92d16c9c1e8960b9fa1b82f293e4b0ba0a25c40709614fa5cff5c3e1d354aa2b079f611e88a
|
|
7
|
+
data.tar.gz: bbcf9c27baa289052da2eb6fcfeab8cd2610cfc855eb466a3f3857476a23726969cca288157462174a9bdc616444a061db54813ecbefe5c0d8343dbfcdbcea3e
|
|
@@ -276,7 +276,16 @@ public partial class DiscoveryWorker : IDiscoveryWorker
|
|
|
276
276
|
else if (extension == ".slnx")
|
|
277
277
|
{
|
|
278
278
|
logger.Info($" Expanding solution: {candidateEntryPoint}:");
|
|
279
|
-
SolutionModel solution
|
|
279
|
+
SolutionModel solution;
|
|
280
|
+
try
|
|
281
|
+
{
|
|
282
|
+
solution = await SolutionSerializers.SlnXml.OpenAsync(candidateEntryPoint, CancellationToken.None);
|
|
283
|
+
}
|
|
284
|
+
catch (SolutionException ex)
|
|
285
|
+
{
|
|
286
|
+
throw new UnparseableFileException(ex.Message, candidateEntryPoint);
|
|
287
|
+
}
|
|
288
|
+
|
|
280
289
|
string solutionPath = Path.GetDirectoryName(candidateEntryPoint) ?? string.Empty;
|
|
281
290
|
|
|
282
291
|
foreach (SolutionProjectModel project in solution.SolutionProjects)
|
|
@@ -215,6 +215,11 @@ internal static class SdkProjectDiscovery
|
|
|
215
215
|
|
|
216
216
|
if (!File.Exists(binLogPath))
|
|
217
217
|
{
|
|
218
|
+
if (stdErr.Contains("A compatible .NET SDK was not found."))
|
|
219
|
+
{
|
|
220
|
+
throw new Exception("Missing SDK, check global.json locations vs. job directories.");
|
|
221
|
+
}
|
|
222
|
+
|
|
218
223
|
throw new FileNotFoundException("Dependency discovery didn't produce a log file.");
|
|
219
224
|
}
|
|
220
225
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dependabot-nuget
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.380.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dependabot
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.
|
|
18
|
+
version: 0.380.0
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - '='
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.
|
|
25
|
+
version: 0.380.0
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: debug
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -579,7 +579,7 @@ licenses:
|
|
|
579
579
|
- MIT
|
|
580
580
|
metadata:
|
|
581
581
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
|
582
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
|
582
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.380.0
|
|
583
583
|
rdoc_options: []
|
|
584
584
|
require_paths:
|
|
585
585
|
- lib
|