Skip to content

Commit c85bea5

Browse files
authored
Merge pull request #163 from marcominerva/develop
Refactor solution structure and update package versions
2 parents d7e9395 + ce6cb1b commit c85bea5

File tree

3 files changed

+24
-105
lines changed

3 files changed

+24
-105
lines changed

SimpleAuthentication.sln

Lines changed: 0 additions & 103 deletions
This file was deleted.

SimpleAuthentication.slnx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Solution>
2+
<Folder Name="/Samples/" />
3+
<Folder Name="/Samples/Controllers/">
4+
<Project Path="samples/Controllers/ApiKeySample/ApiKeySample.csproj" />
5+
<Project Path="samples/Controllers/BasicAuthenticationSample/BasicAuthenticationSample.csproj" />
6+
<Project Path="samples/Controllers/JwtBearerSample/JwtBearerSample.csproj" />
7+
</Folder>
8+
<Folder Name="/Samples/Minimal APIs/">
9+
<Project Path="samples/MinimalApis/ApiKeySample/ApiKeySample.csproj" />
10+
<Project Path="samples/MinimalApis/BasicAuthenticationSample/BasicAuthenticationSample.csproj" />
11+
<Project Path="samples/MinimalApis/JwtBearerSample/JwtBearerSample.csproj" />
12+
<Project Path="samples/MinimalApis/Net8JwtBearerSample/Net8JwtBearerSample.csproj" />
13+
</Folder>
14+
<Folder Name="/Solution Items/">
15+
<File Path=".editorconfig" />
16+
<File Path=".github/copilot-instructions.md" />
17+
<File Path="src/Directory.Build.props" />
18+
</Folder>
19+
<Project Path="src/SimpleAuthentication.Abstractions/SimpleAuthentication.Abstractions.csproj" />
20+
<Project Path="src/SimpleAuthentication.Swashbuckle/SimpleAuthentication.Swashbuckle.csproj" />
21+
<Project Path="src/SimpleAuthentication/SimpleAuthentication.csproj" />
22+
</Solution>

src/SimpleAuthentication.Abstractions/SimpleAuthentication.Abstractions.csproj

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

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

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

3838
<ItemGroup>

0 commit comments

Comments
 (0)