Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 2d9c512

Browse files
authored
Merge pull request #11 from mattpalermo/references
Support importing library references
2 parents 30257ec + d38895c commit 2d9c512

9 files changed

+1626
-403
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# CRLF -> LF by default, but not for modules or classes (especially classes)
2+
* text=auto
3+
*.bas text eol=crlf
4+
*.cls text eol=crlf
5+
*.frm text eol=crlf

CodeExport.config.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"Module Paths": {
3+
"clsVBECmdHandler": "clsVBECmdHandler.cls",
4+
"JsonConverter": "JsonConverter.bas",
5+
"modImportExport": "modImportExport.bas",
6+
"modMenu": "modMenu.bas"
7+
},
8+
"References": [
9+
{
10+
"Name": "Scripting",
11+
"Description": "Microsoft Scripting Runtime",
12+
"GUID": "{420B2830-E718-11CF-893D-00A0C9054228}",
13+
"Major": 1,
14+
"Minor": 0
15+
},
16+
{
17+
"Name": "VBIDE",
18+
"Description": "Microsoft Visual Basic for Applications Extensibility 5.3",
19+
"GUID": "{0002E157-0000-0000-C000-000000000046}",
20+
"Major": 5,
21+
"Minor": 3
22+
}
23+
]
24+
}

CodeExportFileList.conf

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)