Skip to content

Commit

Permalink
Fix for specifying project extension.
Browse files Browse the repository at this point in the history
  • Loading branch information
hvanbakel committed Aug 29, 2018
1 parent 84ade1d commit 3fae76e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Project2015To2017/ProjectConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public IEnumerable<Project> Convert(string target)
case string s when ProjectFileMappings.TryGetValue(extension, out var fileExtension):
var file = new FileInfo(target);
yield return this.ProcessFile(file, null);
yield break;
break;
default:
this.logger.LogCritical("Please specify a project or solution file.");
Expand Down

0 comments on commit 3fae76e

Please sign in to comment.