Skip to content

Commit

Permalink
fix regexp - only the first digit would be non-zero, subsequent ones …
Browse files Browse the repository at this point in the history
…might be
  • Loading branch information
mrjpeterj committed Jul 24, 2018
1 parent 7ec01b8 commit a6eff3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension/VSProject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class VSProject : IProject
/// </summary>
private const string SOLUTION_EXTENSION = ".sln";

private static readonly Regex netFramework = new Regex("^net[1-9]+");
private static readonly Regex netFramework = new Regex("^net[1-9]");

/// <summary>
/// The XML representation of the project
Expand Down

0 comments on commit a6eff3f

Please sign in to comment.