We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bbb5ce commit 240eebaCopy full SHA for 240eeba
README.md
@@ -12,7 +12,23 @@
12
13
## Quick Start
14
15
-Add `GeneratePostmanData` after Simplify registration and container setup
+1. Add `RegisterSimplifyWebPostman` to IOC container registrations.
16
+
17
+```csharp
18
+public static class IocRegistrations
19
+{
20
+ public static IDIContainerProvider RegisterAll(this IDIContainerProvider containerProvider)
21
+ {
22
+ containerProvider.RegisterSimplifyWeb()
23
+ .RegisterJsonModelBinder()
24
+ .RegisterSimplifyWebPostman();
25
26
+ return containerProvider;
27
+ }
28
+}
29
+```
30
31
+2. Add `GeneratePostmanData` after Simplify registration and container setup
32
33
```csharp
34
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
0 commit comments