Config
This page is likely outdated (last edited on 26 Oct 2007). Visit the new documentation for updated content.
Mono uses configuration files in a few places, the following sections describe what you can use and where.
Configuration files can appear in two places, as a way of configuring assemblies or when using ASP.NET applications.
To configure assemblies, you create a file with the extension .config containing the configuration elements that you want for your assembly. For example, if you want to configure the program “hello.exe” you would create a “hello.exe.config” file. This is not limited to executables, you can also configure libraries, for example “library.dll” and “library.dll.config”.
With ASP.NET applications since there are no assemblies per-se to configure, the configuration lives on the file “web.config” or “Web.config”. These configuration files work on a per-directory basis, so you can have different configuration parameters for different parts of your web application.
The configuration file is an XML file whose root element is <configuration>.
Subelements:
<configuration> <system.web>...</system.web> <system.net>...</system.net> </configuration>
For more information, see:
Config system.web. Config system.net.The documentation on this site is not complete, but it documents some Mono-specific configuration options, the following elements can be nested inside the <configuration> section:
<dllmap> - Mapping Libraries.<compilation>
Use the <compilation> setting inside the <configuration> section to control whether debug information must be generated when invoking the compiler.
For example, you could put this in your web.config file for your ASP.NET pages to get debugging symbols for compiler generated code:
<configuration> <compilation debug="true" /> </configuration>
网址:Config https://mxgxt.com/news/view/1712868
相关内容
BGP实验:EBGP和IBGP邻居关系的配置与实践ropz CS2 settings, crosshair & config
bgp4什么报文建立邻居关系 bgp建立邻居配置
Secrets Manager
Database Exception – yii\db\Exception
QUnit.config
RCA 客户端八种异常处理方法
Seastar
[AS]星辉魔法 (Astral Sorcery)
由于目标计算机积极拒绝,无法连接。 127.0.0.1:6379
随便看看
- 明星让孩子放弃义务教育读“国学”,到底是什么逻辑?声音免费在线播放
- “国学教母”于丹:从国学大师到“学术骗子”,她到底怎么了?
- Arya旅行小记。:1956年,国学大师钱穆,61岁时三婚迎娶27岁胡美琦。新婚夜,他盯着如花似玉的娇妻,突然间想起了自己失散多年的妻子和5个孩子,不禁流下了眼泪。 来到香港,他不仅失去了自己的五个孩子,还失去了自己曾经的妻子,如今虽与新婚妻子相爱,却也只能在贫民窟结婚,甚至连几套像样的衣服都没有准备,只能与新婚妻子仓皇度日。 一个27的女学生,跟一个垂垂老矣的老头子,不仅没有让她过上好生...
- 「职位对比」百闻一见 国学演员/主播怎么样
- 英国作家说中国无未来,国学大师遂和他打个赌,30年后中国赌赢了

