Skip to content

Commit a9c4ec0

Browse files
committed
Fix warnings
1 parent 15a6bac commit a9c4ec0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

projects/features/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@
4646

4747
This new Feature interface consolidate previous version's three response body APIs into one
4848

49-
dotnet6
49+
dotnet8

projects/features/features-server-request/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
app.Use(async (context, next) =>
66
{
77
var request = context.Features.Get<IHttpRequestFeature>();
8-
request.Headers.Add("greetings", "hello world");
8+
request.Headers.Append("greetings", "hello world");
99
await next.Invoke();
1010
});
1111

projects/features/features-session-redis-2/features-session-redis-2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="6.0.1" />
8+
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="8.0.0" />
99
</ItemGroup>
1010
</Project>

projects/file-provider/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ more complex scenario in the next sample.
4646
Log information about the static file being served.
4747

4848

49-
dotnet6
49+
dotnet8

0 commit comments

Comments
 (0)