Skip to content

Commit

Permalink
updating Version to 1.0.0
Browse files Browse the repository at this point in the history
Updating README.md
  • Loading branch information
profet23 committed Jul 26, 2023
1 parent 3a1322a commit 925f2d4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion FastOptions/FastOptions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.0-rc</Version>
<Version>1.0.0</Version>
<Title>FastOptions</Title>
<Authors>Sermo</Authors>
<Description>A significantly faster drop in replacement for the default OptionsManager provided by ASP.NET core.</Description>
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
# FastOptions
A significantly faster drop in replacement for the default OptionsManager provided by ASP.NET core.

## Background
The default OptionsManager implementation for IOptionsSnapshot<> has significant performance deficiencies.
This library provides a workaround for these deficiencies by attempting to utilize IOptionsMonitor<> when possible.
The library falls back to OptionsManager when IOptionsMonitor<> is not available.

[The performance issue is being tracked here.](https://github.com/dotnet/runtime/issues/53793)

## Usage
```csharp
services.AddFastOptions();
```
You can then inject IOptionsSnapshot<> as you normally would.

0 comments on commit 925f2d4

Please sign in to comment.