Skip to content

Commit

Permalink
add support for vb, f# with .net
Browse files Browse the repository at this point in the history
  • Loading branch information
avijeetsm committed Nov 25, 2024
1 parent 3968039 commit 0915fe7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions internal/plugin/autodetect/auto_detect_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,16 @@ func DetectDirectoriesToCache(skipPrepare bool) ([]string, []string, string, err
tool: "dotnet",
preparer: newDotnetPreparer(),
},
{
globToDetect: "*.vbproj",
tool: "dotnet",
preparer: newDotnetPreparer(),
},
{
globToDetect: "*.fsproj",
tool: "dotnet",
preparer: newDotnetPreparer(),
},
}

var directoriesToCache []string
Expand Down

0 comments on commit 0915fe7

Please sign in to comment.