clickonce

Missing prerequisites for Visual C++ in Visual Studio 2012

喜欢而已 提交于 2019-11-29 20:33:15
问题 I've recently installed vs2012 and I've updated my ClickOnce application. To be more precise, the first time I've opened my C++ project (on which depends my primary c# project) I've not updated it and everything worked fine. VS 2012 was still able to see the Visual C++ 2010 prerequisite. Later on I've updated my project by changing the Platform Toolset to "Visual Studio 2012 (v110)" under Properties->Configuration Properties->General . In the meantime I've installed even other software and

How do I completely uninstall a ClickOnce application from my computer?

旧巷老猫 提交于 2019-11-29 20:17:40
While experimenting with trying to publish both a Foo and Foo Beta version of my application via ClickOnce I managed to clobber the existing and previously-working-fine Foo 1.0.0 install (replacing it with Foo Beta 1.0.5, which does not work) due to using the same GUID , assembly name, product name or something. OK, honest mistake. In an attempt to revert this I then uninstalled Foo Beta using the Windows 7 add/remove programs. My computer is now in a state where no instance of Foo shows up in Windows 7 Add/Remove programs. However, Foo Beta is still shown as installed. In addition, I am

C# Deploying my application - clickonce from web only

a 夏天 提交于 2019-11-29 19:49:03
问题 So I have developed my application in C#. I am ready to deploy it. I want to make it so that users always launch it from my website (so that they always get updates, no install, etc.). Is ClickOnce the proper way to do this? I tried deploying ClickOnce to my server and a few things jump out at me: 1) The user is given the option to run a setup or launch the .application file - what's the difference? Can't it detect this on it's own? 2) When I try to "launch" the .application it asks to

In Windows, what default event sources are available in the Application Event Log?

会有一股神秘感。 提交于 2019-11-29 18:32:28
问题 Short Version: Are the event sources "Application" and "Application Error" always included in the Application Event Log? Are they available on new installations of Windows XP, Vista and Windows 7? Would it be really bad to use them instead of creating my own source (an impossibility for me)? Long Version: I have a ClickOnce application that is used by users without administrative privileges on their machines. When I try to write to the Appliction Event Log, I get a security exception. (The

ClickOnce start menu icon

我怕爱的太早我们不能终老 提交于 2019-11-29 17:00:42
问题 How do I set the icon for my start menu shortcut, when I deploy and install my application with ClickOnce? Platform: Visual Studio 2010 Professional Beta 1 回答1: Double-click on the properties for your main project. Click on the Application tab. (I'm assuming C# here. If you're doing VB, post back if it's different and I'll see if it's the same.) In the middle of the page, there is an option for "icon and manifest". Browse to find the icon you want to use and select it. It needs to be in the

Looking for recomendation to show release notes in ClickOnce applications

守給你的承諾、 提交于 2019-11-29 14:37:48
I have a few strategies which I'm about to trial in a few scenarios and am looking for guidance on what others have had experience with and proven successful. The current strategies I have in mind are: Place a release-notes.xml file in the root of the publish location which contains formatted notes that the application can manually download when it detects a new version available. Use a FileGroup and download that group using ApplicationDeployment.DownloadFileGroup(String) which would contain the said release notes. I only want the release notes prior an update. I'm handling application

In Visual Studio 2012 where does ClickOnce “Publish” expect to find the .Net 4 client profile?

最后都变了- 提交于 2019-11-29 14:32:41
The Publish feature stopped working once I installed Visual Studio 2012. Publish cannot find the prerequisite Microsoft .Net Framework 4 Client Profile (x86 and x64). Previously in Visual Studio 2010 this worked fine. I use 64-bit Windows 7. The exact Visual Studio 2012 error message reads: Error 104 - To enable 'Download prerequisites from the same location as my application' in the Prerequisites dialog box, you must download file 'DotNetFX40Client\dotNetFx40_Client_x86_x64.exe' for item 'Microsoft .NET Framework 4 Client Profile (x86 and x64)' to your local machine. For more information, see

Set registry key through ClickOnce installation

左心房为你撑大大i 提交于 2019-11-29 14:18:26
I need to add my application to the startup and hence, need to set the Registry Key with the Installation path. I have got this working through the Visual Studio Setup project but can't figure out how to do it through a ClickOnce deployment. Anyone know how to set registry keys when using ClickOnce for installation? codeConcussion ClickOnce can't do this. If you want your app to start when the user logs in, you have to write code in your application to do it (copy a shortcut to the startup folder, edit the registry, etc.) Also, keep in mind that if you write code to handle this scenario, it

Why does my .net application require full trust?

谁说胖子不能爱 提交于 2019-11-29 13:22:08
问题 I've developed a .net 3.0 application, which is deployed using clickonce. I'd like to move from full trust to partial trust to ease deployment. I've tried the "Calculate Permissions" tool in the "Security" tab of my project under visual studio, and the answer is quite clear : --------------------------- Microsoft Visual Studio --------------------------- This application requires full trust to run correctly. However, I've not been able to figure out why full trust is required. I've tried to

Unable to install or run the application: Click Once

北战南征 提交于 2019-11-29 10:49:09
问题 I published my .net application using ClickOnce, and all my users get the following error message on trying to open the program: "Unable to install or run the application. The application requires that assembly Telerik.Windows.Data Version 2012.1.215.40 be installed in the Global Assembly Cache (GAC) first". The version I actually use in my application is NEWER than the one mentioned in the error message. I also don't have this problem on my machine which I use to develop the application. I