Move assembly metadata from AssemblyInfo.vb to project file

Assembly metadata attributes such as title, description, company, product, and version information were removed from AssemblyInfo.vb and added to Patterns.vbproj. This centralizes assembly information 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 15:00:25 +01:00
parent b980e2f308
commit 848a7ed72c
2 changed files with 6 additions and 26 deletions

View File

@@ -9,6 +9,12 @@
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<ImplicitUsings>enable</ImplicitUsings>
<PostBuildEvent>powershell.exe -command "&amp; { &amp;'$(SolutionDir)copy-binary.ps1' '$(TargetPath)' '$(TargetFileName)' '$(ConfigurationName)' '$(ProjectName)' }"</PostBuildEvent>
<AssemblyTitle>DigitalData.Patterns</AssemblyTitle>
<Description>Enthält die Digital Data Struktur von Patterns die zum Ersetzen innerhalb der DD Produkte dienen</Description>
<Company>Digital Data GmbH, Heuchelheim</Company>
<Product>DigitalData.Patterns</Product>
<AssemblyVersion>1.3.1.0</AssemblyVersion>
<FileVersion>1.3.1.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>DigitalData.Modules.Patterns.xml</DocumentationFile>