Version displayed in publish.htm?

What is displayed as "Version" in publish.htm? Is it the "assembly version", the "file version", or the "publish version"?

The reason I ask is that I have bumped the "publish version" up twice now, from 1.0.0.0 to 1.0.0.1 and now to 1.0.0.2, and each time I publish, the resulting publish.htm file shows "1.0.0.0" as the version.

[332 byte] By [mabster] at [2007-12-16]
# 1
The version displayed is the Published version. Can you open publish.htm in notepad and check what the version is. Also, when you publish an update check the if publish.htm is updated. I suspect publish.htm is not getting updated.

Thanks,
Sameer

SameerMurudkar at 2007-9-9 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...
# 2
Bingo! The "Automatically generate deployment web page after every publish" checkbox was unchecked for some reason. I wonder if that's the default behaviour? Weird.
mabster at 2007-9-9 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...
# 3
Is there a similar option to automatically generate deployment web page after every publish when we publish from command line?
VanP at 2007-9-9 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...
# 4
The creation of the page is done inside Visual Studio and not MSBuild so you can't get the page to create from a command line build.
Sampy at 2007-9-9 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...
# 5
This is great feed back, Does anyone have an example of the publish.htm without using Visual studio? Thanks!
phanf at 2007-9-9 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...
# 6
The published version is displayed. Can you check the following

1. On the server where publish.htm is published what is the last modified date of publish.htm. I am wondering if an old copy of publish.htm is being picked up.

2. On the publish tab in Visual Studio select the Otpions button. In the Publish Options dialog make sure the "Automatically generate deployment web page after every publish is checked".

Thanks,
Sameer

SameerMurudkar at 2007-9-9 > top of Msdn Tech,Windows Forms,ClickOnce and Setup & Deployment Projects...