The assemblyfileversion tag has no wiki summary.
7
votes
5answers
1k views
What is the AssemblyFileVersion used for in C#?
In the assemblyInfo.cs I have AssemblyVersion and AssemblyFileVersion.
Normally I just increment the AssemblyVersion like this.
1st digit: Major change
2nd digit: Minor change
3rd digit: bug fixes
...
3
votes
2answers
295 views
VB.Net - What is the difference between AssemblyFileVersion & AssemblyFileVersionAttribute and AssemblyVersion & AssemblyVersionAttribute
I've inherited a VB.Net codebase which was VB 2005 and upgraded to VB 2008 consisting of around 100 projects
I'm trying to re-version all of the components but have discovered some of the ...
0
votes
1answer
40 views
ToggleSwitch not worked in windowsphone7.5
I used ToggleSwitch control in windowsphone, It works fine in windowsphone7 version, takes Microsoft.Phone.Controls as a assembly reference. But in the windowsphone7.5 it asks assembly reference for ...
0
votes
1answer
322 views
How do I get an assembly/DLL's “File Version” as shown in Explorer? AssemblyFileVersionAttribute doesnt't work
I want the "actual" version of a DLL to remain constant (1.0.0.0 in this case) to avoid reference/versioning problems. However, I'd like to embed the build/revision number into the DLL for debugging ...
0
votes
0answers
35 views
Get the data from the “Version” Tab in Dll properties with c# code?
I want to get the FileVersion (or ProductVersion) and the Comments fields which are in the "Version" tab of a dll using a c# code.
I tried to use the Assembly class, but didn't find the data I need.
...
0
votes
1answer
467 views
File version in AssemblyInfo.cs not reflected in Windows Explorer File Properties?
I've got a VS2010 project that contains an AssemblyInfo.cs file. This has:
[assembly: AssemblyFileVersion("10.0.1.0")]
When I run my app and ask for the file version from the executing assembly it ...