Skip to content

Commit 1c27d6d

Browse files
authored
Update README.md
1 parent 52e00ed commit 1c27d6d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![NuGet](https://img.shields.io/nuget/v/Unity.Microsoft.DependencyInjection.svg)](https://www.nuget.org/packages/Unity.Microsoft.DependencyInjection)
55

66
# Unity.Microsoft.DependencyInjection
7-
Unity extension to integrate with [Microsoft.Extensions.DependencyInjection.Abstractions](https://github.com/aspnet/DependencyInjection) compliant systems
7+
Unity extension to integrate with [Microsoft.Extensions.DependencyInjection](https://github.com/aspnet/DependencyInjection) compliant systems
88

99
## Get Started
1010
- Reference the `Unity.Microsoft.DependencyInjection` package from NuGet.
@@ -13,14 +13,14 @@ Install-Package Unity.Microsoft.DependencyInjection
1313
```
1414

1515
## Registration:
16-
- In the `WebHostBuilder` add `UseUnityServiceProvider(IUnityContainer container = null)` method
16+
- In the `WebHostBuilder` add `UseUnityServiceProvider(...)` method
1717

1818
```C#
1919
public static IWebHost BuildWebHost(string[] args) =>
2020
WebHost.CreateDefaultBuilder(args)
21-
.UseUnityServiceProvider()
22-
.UseStartup<Startup>()
23-
.Build();
21+
.UseUnityServiceProvider()
22+
.UseStartup<Startup>()
23+
.Build();
2424
```
2525
- Add method to your `Startup` class
2626
```C#

0 commit comments

Comments
 (0)