Is there a NuGet equivalent for deploying content to end users?

后端 未结 2 1184
再見小時候
再見小時候 2021-02-15 16:09

I have a c# application and I am mainly concerned with pushing out automatic updates to clients running my software. These updates can be anything from a new / patched dll to ne

2条回答
  •  一生所求
    2021-02-15 16:43

    Building upon SLaks comment.

    Chocolatey is a wrapper around nuget for installing apps, similar to the likes of app-get in the Linux world. It is a tool to wrap around all sorts of installers.

    If your clients are happy running the command line, chocolatey is a good solution for publishing apps.

    The WiX installer describes itself as "The most powerful set of tools available to create your Windows installation experience. Free and Open Source since 2004!" So depending on how sophisticated you want to go you may wish to take a look it also.

提交回复
热议问题