Deploy my DLLs to GAC for use with ClickOnce App

前端 未结 6 892
轻奢々
轻奢々 2021-01-05 16:02

How do I do it? Is there any reason I shouldn\'t?

I have a winform ClickOnce App that has about 13mbs in DLLs that are not mine so I would have no need/ability to u

6条回答
  •  别那么骄傲
    2021-01-05 16:27

    According to Google no and no here too.

    You would have to look into alternative installer tools such as creating an MSI installer. It sounds strange, but my first idea to tackle install size would be to have two installers. One to install dependencies into the GAC that the users only have to run once, and another installer (that I guess could use ClickOnce) to install the actual application. Using this method, you could theoretically rely on the smaller ClickOnce deployment for all future app updates.

提交回复
热议问题