Skip to content

Commit

Permalink
T4-VB: Use the right VB variant (#2341)
Browse files Browse the repository at this point in the history
I used the wrong VB variant when creating T4 VB. It should have been VB.net.
  • Loading branch information
RunDevelopment committed May 13, 2020
1 parent caec5e3 commit b609333
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components.json
Expand Up @@ -1079,7 +1079,7 @@
},
"t4-vb": {
"title": "T4 Text Templates (VB)",
"require": ["t4-templating", "visual-basic"],
"require": ["t4-templating", "vbnet"],
"owner": "RunDevelopment"
},
"t4-templating": {
Expand Down
2 changes: 1 addition & 1 deletion components/prism-t4-vb.js
@@ -1 +1 @@
Prism.languages['t4-vb'] = Prism.languages['t4-templating'].createT4('visual-basic');
Prism.languages['t4-vb'] = Prism.languages['t4-templating'].createT4('vbnet');
2 changes: 1 addition & 1 deletion components/prism-t4-vb.min.js
@@ -1 +1 @@
Prism.languages["t4-vb"]=Prism.languages["t4-templating"].createT4("visual-basic");
Prism.languages["t4-vb"]=Prism.languages["t4-templating"].createT4("vbnet");
2 changes: 1 addition & 1 deletion plugins/autoloader/prism-autoloader.js
Expand Up @@ -134,7 +134,7 @@
],
"t4-vb": [
"t4-templating",
"visual-basic"
"vbnet"
],
"vala": "clike",
"vbnet": "basic",
Expand Down
2 changes: 1 addition & 1 deletion plugins/autoloader/prism-autoloader.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b609333

Please sign in to comment.