Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
(+) #2 Added support for bv projects
Browse files Browse the repository at this point in the history
  • Loading branch information
GeertvanHorrik committed Apr 19, 2014
1 parent b40c9af commit 58f1fcf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/GitHubLink/Linker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ public static int Link(Context context)
var gitPreparer = new GitPreparer(context);
gitPreparer.Prepare();

var projectFiles = Directory.GetFiles(context.SolutionDirectory, "*.csproj", SearchOption.AllDirectories);
var projectFiles = new List<string>();
projectFiles.AddRange(Directory.GetFiles(context.SolutionDirectory, "*.csproj", SearchOption.AllDirectories));
projectFiles.AddRange(Directory.GetFiles(context.SolutionDirectory, "*.vbproj", SearchOption.AllDirectories));

int projectCount = projectFiles.Count();
var failedProjects = new List<string>();
Expand Down

0 comments on commit 58f1fcf

Please sign in to comment.