Move assembly metadata from AssemblyInfo.vb to project file

Assembly metadata such as title, description, company, product, and version information was removed from AssemblyInfo.vb and added to Windows.vbproj. This centralizes assembly attributes in the project file, aligning with modern .NET project conventions. No functional code changes were made.
This commit is contained in:
Developer01
2025-12-29 14:55:51 +01:00
parent 392e5cf8fd
commit 4fe1ac2a01
2 changed files with 6 additions and 26 deletions

View File

@@ -11,6 +11,12 @@
<ImplicitUsings>enable</ImplicitUsings>
<OptionCompare>Text</OptionCompare>
<PostBuildEvent>powershell.exe -command "&amp; { &amp;'$(SolutionDir)copy-binary.ps1' '$(TargetPath)' '$(TargetFileName)' '$(ConfigurationName)' '$(ProjectName)' }"</PostBuildEvent>
<AssemblyTitle>Modules.Windows</AssemblyTitle>
<Description>Stellt Funktionen für windows und Hotkeys bereit</Description>
<Company>Digital Data GmbH, Heuchelheim</Company>
<Product>Modules.Windows</Product>
<AssemblyVersion>1.5.1.0</AssemblyVersion>
<FileVersion>1.5.1.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>DigitalData.Modules.Windows.xml</DocumentationFile>