Ways to deploying console applications in C#

前端 未结 5 1467
感动是毒
感动是毒 2020-12-04 12:20

I have a relatively complex console application which relies on several dlls. I would like to \"ship\" this in the best form. My preferred way would be an exe file with all

5条回答
  •  温柔的废话
    2020-12-04 13:04

    OR you could use a self-extracting ZIP file. Package all the normal files up - .exe, .dll, .config, and anything else - into a zip file. Extract into a temp directory and set the run-on-extract program to be the actual console exe.

提交回复
热议问题