AssemblyInfo

Goto your project properties, Application tab, click on the Assembly Information button.
This information is saved in the AssemblyInfo.cs file
SS


Title -
Description -
Company -
Product -
Copyright -
Trademark -
Assembly Version -
File Version -
GUID -
Neutral Language -
Make Assembly COM-Visible - (link from index)



Location

This file appears in the "Properties" sub folder
SS




AssemblyInfo.vb

In VB this file appears in the "My Project" sub folder



Title -
Description -
Company -
Product -
Copyright -
Trademark -



Assembly Version

This is used by the .NET Framework during a build
This is used at runtime to locate, link and load assemblies
This is the version number that is used when you embed a reference to an assembly.


Edit the AssemblyInfo.cs file and change the build and revision numbers to asterisks

[assembly: AssemblyVersion ("1.0.*.*")] 
[assembly: AssemblyFileVersion ("1.0.*.*")]

File Version

Displayed in windows explorer
Never used by the .NET Frameowrk or at runtime.
This must be changed for an install to be installed over the top of an existing version



If you always want the file version to be the same as the assembly version you can open the AssemblyInfo.vb file and comment out the file version line
Assembly: AssemblyVersion("3.0.*)
'Assembly: AssemblyFileVersion("1.0.0.0")


To see the contents of this file, select "Show All Files" button in your solution explorer


You can access it from (My Project > APplication > Assembly Info)



GUID -
Neutral language -



© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited TopPrevNext