Skip to content

Commit 9c73e5e

Browse files
committed
Corrected Handler discovery
1 parent d380e90 commit 9c73e5e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Synapse.cli/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ static void DiscoverHandlers(string handlerLib, ref List<string> handlers)
211211
Type[] types = hrAsm.GetTypes();
212212
foreach( Type t in types )
213213
if( t.GetInterfaces().Contains( typeof( IHandlerRuntime ) ) )
214-
handlers.Add( $"{handlerLib}:{t.Name}" );
214+
handlers.Add( $"{handlerLib}:{t.FullName}" );
215215
}
216216
catch { } //throw;
217217
}

Synapse.cli/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion( "0.1.0.0" )]
36-
[assembly: AssemblyFileVersion( "0.1.17144.0" )]
36+
[assembly: AssemblyFileVersion( "0.1.17145.0" )]

0 commit comments

Comments
 (0)