I am automating the installation of a series of ClickOnce Apps using the standard InHouseHosting Manager steps.
GetmanifestAsync, when GetmanifestCompleted, then AssertApplicationRequirements and then DownloadApplicationAsync.
This works great in some environments. I have random installations that are receiving a Method not found error for AssertApplicationRequirements. These users have .net framework 1.1, 2.0 SP1, 3.0 SP1and 3.5 installed.
My app is written in VB .net using VS2005.
In addition when I converted the app to VS2008 thinking this may be a .net framwork 2.0 issue, all was OK. Then I updated the app and even though System.Deployment is still referenced, VS2008 is not recognizingInPlaceHostingManager.
I am automating the ClickOnce installations because our users will install 7 ClickOnce apps and I am minimizing user interaction during the installation.
Can you provide some guidance?