Here is the way change the Assembly Name and/or Title if you all using Visual Studio
The file path is C:\dev\IRISNG\IRISNG\My Project\AssemblyInfo.vb
Here is a sample AssemblyInfo File
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' General Information about an assembly is controlled through the following
' set of attributes. Change these attribute values to modify the information
' associated with an assembly.
' Review the values of the assembly attributes
<Assembly: AssemblyTitle("IRISNG")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("IRISNG")>
<Assembly: AssemblyCopyright("Copyright © 2007")>
<Assembly: AssemblyTrademark("")>
<Assembly: ComVisible(False)>
'The following GUID is for the ID of the typelib if this project is exposed to COM
<Assembly: Guid("21df7a15-927f-494a-9f05-dd680390bedf")>
' Version information for an assembly consists of the following four values:
'
'
Major Version
' Minor Version
' Build Number
' Revision
'
' You can specify all the values or you can default the Build and Revision Numbers
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>
NOTE: Remember to click the Show files button at the top of the Solution Explorer
EDIT:
When using vbc.exe you need to set your AssemblyInfo.vb in the commandline e.g.
C:\WINDOWS\Microsoft.NET\Framework\v3.5\Vbc.exe /noconfig /imports:Microsoft.VisualBasic,System,System.Collections" /target:exe Module1.vb "My Project\AssemblyInfo.vb"
Notice the part "My Project\AssemblyInfo.vb"
If you still can't get it to work you can dump the output of msbuild to a log file. Then search it for the exact vbc command the IDE is excuting.
Example:
msbuild /v:diag myproject.vbproj >> log.txt
More Information at:
Command Line Compiling Settings.settings using VBC