Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update .md file for method for disabling conventional discovery
  • Loading branch information
ksanketrao authored Dec 18, 2025
commit 1f142b6525a0231b46a085a83a8015b2d71b6d38
2 changes: 1 addition & 1 deletion docs/guide/extensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ that issue, or just want a faster start up time, you can disable the automatic e
using var host = await Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder()
.UseWolverine(opts =>
{
opts.DisableConventionalDiscovery();
opts.Discovery.DisableConventionalDiscovery();
}, ExtensionDiscovery.ManualOnly)

.StartAsync();
Expand Down