Why the web.config isn't copied when I publish an ASP.NET Web Project with the “Only files needed to run this application” option?

前端 未结 3 1947
鱼传尺愫
鱼传尺愫 2021-02-20 11:18

How to correct it?

3条回答
  •  鱼传尺愫
    2021-02-20 12:04

    "Only files needed to run this application" means any build output files like DLLs and references in the bin folder and any files that have a Build Action of Content.

    Since the web.config is neither of these, you'll have to change the publish option to All Project Files, or else copy the web.config manually.

提交回复
热议问题