Skip to content

Commit 6ca4289

Browse files
authored
Merge pull request #187 from marcominerva/develop
Update instructions and JwtBearer package versions
2 parents d43ed38 + 7bb884c commit 6ca4289

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/copilot-instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
- Return `Task` or `ValueTask` from asynchronous methods.
4343
- Use `CancellationToken` parameters to support cancellation.
4444
- Avoid async void methods except for event handlers.
45-
- Call `ConfigureAwait(false)` on awaited calls to avoid deadlocks.
45+
- Use `ConfigureAwait(false)` only in library code that may be consumed by apps with a `SynchronizationContext` (e.g., classic ASP.NET, WPF, WinForms); it is generally unnecessary in ASP.NET Core.
4646

4747
### Error Handling
4848

@@ -81,4 +81,4 @@
8181
- Use NSubstitute for mocking in tests.
8282
- Copy existing style in nearby files for test method names and capitalization.
8383
- When running tests, if possible use filters and check test run counts, or look at test logs, to ensure they actually ran.
84-
- Do not finish work with any tests commented out or disabled that were not previously commented out or disabled.
84+
- Do not finish work with any tests commented out or disabled that were not previously commented out or disabled.

src/SimpleAuthentication.Abstractions/SimpleAuthentication.Abstractions.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
</ItemGroup>
2929

3030
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
31-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.24" />
31+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.25" />
3232
</ItemGroup>
3333

3434
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
35-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.13" />
35+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.14" />
3636
</ItemGroup>
3737

3838
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
39-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.3" />
39+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.4" />
4040
</ItemGroup>
4141

4242
<ItemGroup>

0 commit comments

Comments
 (0)