ClickOnce File Association

前端 未结 2 1527
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-07 01:55

I have a console application that I\'m deploying using ClickOnce. Once the user installs the program the associations are set but the associated program is the installer(Cl

相关标签:
2条回答
  • 2020-12-07 02:01

    The problem stemmed for 1 not necessarily understanding ClickOnce, thanks codeConcussion for the brief overview.

    And 2, that ClickOnce does not pass things through the traditional args format but through the following property: AppDomain.CurrentDomain.SetupInformation.ActivationArguments.ActivationData

    0 讨论(0)
  • 2020-12-07 02:04

    I think this is just a misunderstanding of how ClickOnce works. A ClickOnce application's main exe is never launched directly. Applications are started through the deployment manifest (.application file) on the server. If you open your application's start menu shortcut in a text editor you can see it points back to the .application file, not the local .exe.

    This allows all the update magic to happen. If your .aav file was associated to the local .exe, the user wouldn't get any updates when opening the application through a .aav file.

    You stated it "launches the installer" when you double click a file; does your application start after that? Could you explain the final result you are expecting?

    0 讨论(0)
提交回复
热议问题