The difference between build and publish in VS?

后端 未结 3 1217
执念已碎
执念已碎 2020-12-08 18:44

I am a little confused about the difference between build and publish in the visual studio.

What is the difference between building a program and publishing a progr

3条回答
  •  北海茫月
    2020-12-08 19:18

    Build compiles the source code into a (hopefully) runnable application. Publish takes that runnable application and puts it somewhere for other people to run it. Your confusion may come from the fact that Publish will also build the application if it thinks it needs to (e.g. if there are source code changes).

提交回复
热议问题