Where to store configuration for a simple .NET application?

后端 未结 7 2053
死守一世寂寞
死守一世寂寞 2020-12-16 00:50

I\'m programming a fairly simple application which I want to cut to just one simple EXE file + some data storage (XML for example).

My question is regarding configur

相关标签:
7条回答
  • 2020-12-16 01:47

    Creating or using a file in the same folder (or in the App_Data) is pretty standard practice.

    You use an installer like Inno Setup (free) to create a single exe installer (http://www.jrsoftware.org/isinfo.php)

    If you want a DB rather than XML, have a look at SQLite (http://www.sqlite.org/) a file based DB or use an MS Access DB.

    0 讨论(0)
提交回复
热议问题