Reputation: 7153
I've created a config file (in a console app) which is in the Config folder, but unlike the other files in this folder (such as appSettings.config) it's not getting copied to the bin\Config folder.
I have referenced it properly in App.config but not getting copied to bin\Config\
What is it I need to do to make this happen?
Upvotes: 0
Views: 2680
Reputation: 3279
You should open properties of this file and specify Copy to Output Directory
to Copy if newer
Upvotes: 3