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:
@@ -11,6 +11,12 @@
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<OptionCompare>Text</OptionCompare>
|
||||
<PostBuildEvent>powershell.exe -command "& { &'$(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>
|
||||
|
||||
Reference in New Issue
Block a user