From c20783558ed57be4fcbca69951f661b6fc1bd850 Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Wed, 8 Jul 2015 15:13:24 -0700 Subject: [PATCH] Add vbproj to dotnet default mapping --- autoapi/extension.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoapi/extension.py b/autoapi/extension.py index 9795101..f28732a 100644 --- a/autoapi/extension.py +++ b/autoapi/extension.py @@ -43,7 +43,7 @@ def run_autoapi(app): default_file_mapping = { 'python': ['*.py'], - 'dotnet': ['project.json', '*.csproj'], + 'dotnet': ['project.json', '*.csproj', '*.vbproj'], 'go': ['*.go'], 'javascript': ['*.js'], }