Move assembly metadata from AssemblyInfo.vb to project file

Assembly metadata such as title, description, company, product, copyright, and version information was removed from AssemblyInfo.vb and added to the Windream.vbproj project file. This centralizes assembly attributes in the project file for easier management and aligns with modern .NET project conventions. No functional code changes were made.
This commit is contained in:
Developer01
2025-12-29 14:14:54 +01:00
parent 0eeeaee4d5
commit b6543c82b8
2 changed files with 7 additions and 26 deletions

View File

@@ -7,6 +7,13 @@
<MyType>Windows</MyType>
<ImplicitUsings>enable</ImplicitUsings>
<PostBuildEvent>powershell.exe -command "&amp; { &amp;'$(SolutionDir)copy-binary.ps1' '$(TargetPath)' '$(TargetFileName)' '$(ConfigurationName)' '$(ProjectName)' }"</PostBuildEvent>
<AssemblyTitle>Modules.Windream</AssemblyTitle>
<Description>Stellt Funktionen und Module für die windream Funktionalität zur Verfügung</Description>
<Company>Digital Data GmbH. Heuchelheim</Company>
<Product>Modules.Windream</Product>
<Copyright>Copyright © 2025</Copyright>
<AssemblyVersion>1.9.7.0</AssemblyVersion>
<FileVersion>1.9.7.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>DigitalData.Modules.Windream.xml</DocumentationFile>