Skip to content

Commit 3dd3034

Browse files
committed
Allow for empty definition types (eg from legacy RAdddin)
1 parent 0daa77c commit 3dd3034

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

My Project/AssemblyInfo.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ Imports System.Runtime.InteropServices
3030
' You can specify all the values or you can default the Build and Revision Numbers
3131
' by using the '*' as shown below:
3232

33-
<Assembly: AssemblyVersion("1.0.0.2")>
34-
<Assembly: AssemblyFileVersion("1.0.0.2")>
33+
<Assembly: AssemblyVersion("1.0.0.3")>
34+
<Assembly: AssemblyFileVersion("1.0.0.3")>

ScriptAddin.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ Public Module ScriptAddin
293293
ScriptDefDic("skipscripts")(ScriptDefDic("skipscripts").Length - 1) = False
294294
ElseIf deftype = "dir" Then
295295
dirglobal = defval
296-
Else
296+
ElseIf deftype <> "" Then
297297
Return "Error in getScriptDefinitions: invalid type '" + deftype + "' found in script definition!"
298298
End If
299299
Next

0 commit comments

Comments
 (0)