nuget update
This commit is contained in:
81
.nuget/packages/microsoft.extensions.hosting/10.0.0-rc.2.25502.107/PACKAGE.md
vendored
Normal file
81
.nuget/packages/microsoft.extensions.hosting/10.0.0-rc.2.25502.107/PACKAGE.md
vendored
Normal file
@@ -0,0 +1,81 @@
|
||||
## About
|
||||
|
||||
<!-- A description of the package and where one can find more documentation -->
|
||||
|
||||
Contains the .NET Generic Host `HostBuilder` which layers on the `Microsoft.Extensions.Hosting.Abstractions` package.
|
||||
|
||||
## Key Features
|
||||
|
||||
<!-- The key features of this package -->
|
||||
|
||||
* Contains the .NET Generic Host `HostBuilder`.
|
||||
|
||||
## How to Use
|
||||
|
||||
<!-- A compelling example on how to use this package with code, as well as any specific guidelines for when to use the package -->
|
||||
|
||||
For a console app project:
|
||||
```C#
|
||||
using (IHost host = new HostBuilder().Build())
|
||||
{
|
||||
var lifetime = host.Services.GetRequiredService<IHostApplicationLifetime>();
|
||||
|
||||
lifetime.ApplicationStarted.Register(() =>
|
||||
{
|
||||
Console.WriteLine("Started");
|
||||
});
|
||||
lifetime.ApplicationStopping.Register(() =>
|
||||
{
|
||||
Console.WriteLine("Stopping firing");
|
||||
Console.WriteLine("Stopping end");
|
||||
});
|
||||
lifetime.ApplicationStopped.Register(() =>
|
||||
{
|
||||
Console.WriteLine("Stopped firing");
|
||||
Console.WriteLine("Stopped end");
|
||||
});
|
||||
|
||||
host.Start();
|
||||
|
||||
// Listens for Ctrl+C.
|
||||
host.WaitForShutdown();
|
||||
}
|
||||
```
|
||||
|
||||
## Main Types
|
||||
|
||||
<!-- The main types provided in this library -->
|
||||
|
||||
The main types provided by this library are:
|
||||
|
||||
* `Microsoft.Extensions.Host`.
|
||||
* `Microsoft.Extensions.Hosting.HostApplicationBuilder`
|
||||
* `Microsoft.Extensions.Hosting.HostBuilder`
|
||||
* `Microsoft.Extensions.Hosting.IHostedService`
|
||||
* `Microsoft.Extensions.Hosting.IHostedLifecycleService`
|
||||
|
||||
## Additional Documentation
|
||||
|
||||
<!-- Links to further documentation. Remove conceptual documentation if not available for the library. -->
|
||||
|
||||
* [Generic host](https://learn.microsoft.com/dotnet/core/extensions/generic-host)
|
||||
* API documentation
|
||||
- [Host](https://learn.microsoft.com/dotnet/api/microsoft.extensions.hosting.host)
|
||||
- [HostApplicationBuilder](https://learn.microsoft.com/dotnet/api/microsoft.extensions.hosting.hostapplicationbuilder)
|
||||
- [HostBuilder](https://learn.microsoft.com/dotnet/api/microsoft.extensions.hosting.hostbuilder)
|
||||
|
||||
## Related Packages
|
||||
|
||||
<!-- The related packages associated with this package -->
|
||||
|
||||
- `Microsoft.Extensions.Configuration`
|
||||
- `Microsoft.Extensions.DependencyInjection`
|
||||
- `Microsoft.Extensions.Hosting.Abstractions`
|
||||
- `Microsoft.Extensions.Logging`
|
||||
- `Microsoft.Extensions.Options`
|
||||
|
||||
## Feedback & Contributing
|
||||
|
||||
<!-- How to provide feedback on this package and contribute to it -->
|
||||
|
||||
Microsoft.Extensions.Hosting is released as open source under the [MIT license](https://licenses.nuget.org/MIT). Bug reports and contributions are welcome at [the GitHub repository](https://github.com/dotnet/runtime).
|
||||
Reference in New Issue
Block a user