Move assembly metadata from AssemblyInfo.vb to project file

Assembly metadata such as title, product, copyright, and version information was removed from AssemblyInfo.vb and added to the ZooFlow.vbproj project file. This streamlines configuration by centralizing assembly attributes in the project file and reduces redundancy. No functional code changes were made.
This commit is contained in:
Developer01
2025-12-29 14:57:31 +01:00
parent b58881835d
commit f3b6be555b
2 changed files with 5 additions and 26 deletions

View File

@@ -9,6 +9,11 @@
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<ImplicitUsings>enable</ImplicitUsings>
<PostBuildEvent>powershell.exe -command "&amp; { &amp;'$(SolutionDir)copy-binary.ps1' '$(TargetPath)' '$(TargetFileName)' '$(ConfigurationName)' '$(ProjectName)' }"</PostBuildEvent>
<AssemblyTitle>ZooFlow</AssemblyTitle>
<Product>ZooFlow</Product>
<Copyright>Copyright © 2022</Copyright>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>DigitalData.Modules.ZooFlow.xml</DocumentationFile>