AppConfig file not found in bin directory

帅比萌擦擦* 提交于 2019-12-01 14:02:31

问题


I have a App.Config file that users can go to and set some settings to run the program. But when I go to bin\release folder of my program to copy and give them the exe,DLLs, etc I can't find the App.Config file. What should I do? It is a ConsoleApp.


回答1:


your App.Config willbe converted to ApplicationName.exe.config

so if your application name is SampleApplication.exe then you need to check for the following filename

SampleApplication.exe.config.

FROM MSDN : App.Config

When you develop in Visual Studio, place the source configuration file for your app in the project directory and set its Copy To Output Directory property to Copy always or Copy if newer. The name of the configuration file is the name of the app with a .config extension. For example, an app called myApp.exe should have a source configuration file called myApp.exe.config.




回答2:


Is the App.config file set to copy on build? If you right-click on the App.config in VS, and go to Properties, it should be set to 'Content' and 'Copy Always'/'Copy if newer'.

Here is a screenshot of the Properties screen:



来源:https://stackoverflow.com/questions/23296098/appconfig-file-not-found-in-bin-directory

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!