You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For .NET Core projects build tools produce `.deps.json` files and this package implements a convention using `Microsoft.Extensions.DependencyModel` to find any package among dependencies with `Serilog` anywhere in the name and pulls configuration methods from it, so the `Using` section in example above can be ommitted:
78
85
79
86
```json
@@ -106,11 +113,11 @@ var logger = new LoggerConfiguration()
106
113
107
114
For legacy .NET Framework projects it also scans default probing path(s).
108
115
109
-
For all other cases, as well as in the case of non-conventional configuration assembly names **DO** use `Using` section.
116
+
For all other cases, as well as in the case of non-conventional configuration assembly names **DO** use [Using](#using-section-and-auto-discovery-of-configuration-assemblies) section.
110
117
111
118
#### .NET 5.0 Single File Applications
112
119
113
-
Currently, auto-discovery of configuration assemblies is not supported in bundled mode. Use `Using` section for workaround.
120
+
Currently, auto-discovery of configuration assemblies is not supported in bundled mode. **DO** use [Using](#using-section-and-auto-discovery-of-configuration-assemblies) section for workaround.
114
121
115
122
### MinimumLevel, LevelSwitches, overrides and dynamic reload
0 commit comments