Skip to content

Commit

Permalink
F# language support
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Romanov committed Feb 12, 2023
1 parent 719c9c4 commit 34ba389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DotNet.Meteor.Shared/WorkspaceAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace DotNet.Meteor.Shared {

public static class WorkspaceAnalyzer {
public static IEnumerable<Project> AnalyzeWorkspace(string workspacePath, Action<string> callback = null) {
var projectFiles = Directory.GetFiles(workspacePath, "*.csproj", SearchOption.AllDirectories);
var projectFiles = Directory.GetFiles(workspacePath, "*.*proj", SearchOption.AllDirectories);
var projects = new List<Project>();

foreach (var projectFile in projectFiles) {
Expand Down

0 comments on commit 34ba389

Please sign in to comment.