Diferencias
Muestra las diferencias entre dos versiones de la página.
| Ambos lados, revisión anterior Revisión previa | |||
|
cap:dotnet:config [2018/02/23 16:38] user [En el archivo de configuración] |
cap:dotnet:config [2018/02/23 16:40] (actual) user [En el archivo de configuración] |
||
|---|---|---|---|
| Línea 53: | Línea 53: | ||
| **Opción 1** | **Opción 1** | ||
| <code xml> | <code xml> | ||
| - | <configSections> | + | <configuration> |
| - | <section name="nombreSeccion" type="Full Qualified Name" /> | + | <configSections> |
| - | </configSections> | + | <section name="nombreSeccion" type="Full Qualified Name" /> |
| - | <nombreSeccion> | + | </configSections> |
| - | <elementosDeConfiguracion atributosDeConfiguracion="" /> | + | <nombreSeccion> |
| - | </nombreSeccion> | + | <elementosDeConfiguracion atributosDeConfiguracion="" /> |
| + | </nombreSeccion> | ||
| + | </configuration> | ||
| </code> | </code> | ||
| **Opción 2** | **Opción 2** | ||
| <code xml> | <code xml> | ||
| - | <configSections> | + | <configuration> |
| - | <section name="nombreSeccion" type="Full Qualified Name" /> | + | <configSections> |
| - | </configSections> | + | <section name="nombreSeccion" type="Full Qualified Name" /> |
| - | <nombreSeccion configSource="nombreArchivoConfiguracion" /> | + | </configSections> |
| + | <nombreSeccion configSource="nombreArchivoConfiguracion" /> | ||
| + | </configuration> | ||
| </code> | </code> | ||