We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa24ae4 commit 3f8885bCopy full SHA for 3f8885b
src/DotnetAffected.Core/ProjectDiscovery/SolutionFileProjectDiscoverer.cs
@@ -17,7 +17,7 @@ public IEnumerable<string> DiscoverProjects(IDiscoveryOptions options)
17
18
var serializer = SolutionSerializers.GetSerializerByMoniker(options.FilterFilePath);
19
20
- if (serializer is null) throw new NotImplementedException($"Filtering by {options.FilterFilePath} is not yet implemented");
+ if (serializer is null) throw new NotSupportedException($"Filtering by {options.FilterFilePath} is not supported");
21
22
var solution = serializer.OpenAsync(options.FilterFilePath, CancellationToken.None).GetAwaiter().GetResult();
23
0 commit comments