Added assembly metadata (title, description, company, product, copyright, version) to Base.vbproj. Removed redundant assembly attributes from AssemblyInfo.vb, leaving only trademark, ComVisible, and GUID. This centralizes assembly information in the project file and streamlines AssemblyInfo.vb.
10 lines
322 B
VB.net
10 lines
322 B
VB.net
Imports System
|
|
Imports System.Reflection
|
|
Imports System.Runtime.InteropServices
|
|
<Assembly: AssemblyTrademark("1.3.9.0")>
|
|
|
|
<Assembly: ComVisible(False)>
|
|
|
|
'Die folgende GUID wird für die typelib-ID verwendet, wenn dieses Projekt für COM verfügbar gemacht wird.
|
|
<Assembly: Guid("f097830c-82fe-4cd0-8df6-e458522c1ddd")>
|