Initial commit

This commit is contained in:
2022-10-03 16:21:20 +02:00
commit aeddcb75ec
3897 changed files with 2127526 additions and 0 deletions

24
Common/Tracer.vb Normal file
View File

@@ -0,0 +1,24 @@
Imports System.Diagnostics
Public MustInherit Class Tracer
Inherits TraceListener
Public Sub New()
End Sub
Public Overloads Sub WriteLine(ByVal message As String, ByVal category As String)
End Sub
Public Overloads Shared Sub Write(ByVal message As String, ByVal category As String)
End Sub
End Class