Skip to content

Commit 7e4fb7b

Browse files
author
Daniele Giallonardo
committed
packages update
1 parent ff81fc3 commit 7e4fb7b

6 files changed

Lines changed: 32 additions & 28 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup .NET
2323
uses: actions/setup-dotnet@v1
2424
with:
25-
dotnet-version: 7.x
25+
dotnet-version: 8.x
2626
- name: Restore dependencies
2727
run: dotnet restore
2828
working-directory: src
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<CopyRefAssembliesToPublishDirectory>false</CopyRefAssembliesToPublishDirectory>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="7.0.10" />
9+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.4" />
1010
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
11-
<PackageReference Include="SPID.AspNetCore.Authentication" Version="3.1.1" />
11+
<PackageReference Include="SPID.AspNetCore.Authentication" Version="3.2.0" />
1212
</ItemGroup>
1313

1414
</Project>

samples/2_IdentityServer/SPID.AspNetCore.IdentityServerSample.IdentityServer/SPID.AspNetCore.IdentityServerSample.IdentityServer.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>
88
<PackageReference Include="IdentityServer4" Version="4.1.2" />
99

10-
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="7.0.10" />
10+
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="8.0.4" />
1111

12-
<PackageReference Include="SPID.AspNetCore.Authentication" Version="3.1.1" />
12+
<PackageReference Include="SPID.AspNetCore.Authentication" Version="3.2.0" />
1313

1414
</ItemGroup>
1515

Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="7.0.10" />
8+
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.4" />
99
</ItemGroup>
1010

1111
</Project>
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<UserSecretsId>aspnet-TestSpidRazorPages-DFB5517F-45AD-4BBD-BDF9-A5BE96E939B3</UserSecretsId>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.10" />
12-
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.10" />
13-
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.10" />
14-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.10" />
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.10">
11+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.4" />
12+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.4" />
13+
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.4" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.4" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.4">
1616
<PrivateAssets>all</PrivateAssets>
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
</PackageReference>
19-
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.9" />
20-
<PackageReference Include="SPID.AspNetCore.Authentication" Version="3.1.1" />
19+
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.2" />
20+
<PackageReference Include="SPID.AspNetCore.Authentication" Version="3.2.0" />
2121
</ItemGroup>
2222

2323
</Project>

src/SPID.AspNetCore.Authentication/SPID.AspNetCore.Authentication.csproj

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net7.0;net6.0;net5.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net7.0;net6.0;net5.0</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<Description>AspNetCore Remote Authenticator for SPID</Description>
77
<Authors>Daniele Giallonardo, Stefano Mostarda</Authors>
@@ -12,11 +12,11 @@
1212
<PackageProjectUrl>https://github.com/italia/spid-aspnetcore</PackageProjectUrl>
1313
<PackageIcon>spid-nuget.png</PackageIcon>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
15-
<PackageVersion>3.1.1</PackageVersion>
16-
<Version>3.1.1</Version>
17-
<AssemblyVersion>3.1.1</AssemblyVersion>
18-
<FileVersion>3.1.1</FileVersion>
19-
<InformationalVersion>3.1.1</InformationalVersion>
15+
<PackageVersion>3.2.0</PackageVersion>
16+
<Version>3.2.0</Version>
17+
<AssemblyVersion>3.2.0</AssemblyVersion>
18+
<FileVersion>3.2.0</FileVersion>
19+
<InformationalVersion>3.2.0</InformationalVersion>
2020
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2121
<PackageReadmeFile>README.md</PackageReadmeFile>
2222
<RepositoryUrl>https://github.com/italia/spid-aspnetcore</RepositoryUrl>
@@ -26,13 +26,17 @@
2626
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" />
2727
<PackageReference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" Version="2.2.0" />
2828
<PackageReference Include="Microsoft.AspNetCore.Razor" Version="2.2.0" />
29-
<PackageReference Include="Microsoft.AspNetCore.Razor.Language" Version="6.0.23" />
29+
<PackageReference Include="Microsoft.AspNetCore.Razor.Language" Version="6.0.29" />
3030
</ItemGroup>
3131

32-
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' or '$(TargetFramework)' == 'net6.0'">
33-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
34-
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
35-
<PackageReference Include="System.Security.Cryptography.Xml" Version="7.0.1" />
32+
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' or '$(TargetFramework)' == 'net7.0' or '$(TargetFramework)' == 'net6.0'">
33+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.1" />
34+
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
35+
<PackageReference Include="System.Security.Cryptography.Xml" Version="8.0.0" />
36+
</ItemGroup>
37+
38+
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
39+
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.4" />
3640
</ItemGroup>
3741

3842
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">

0 commit comments

Comments
 (0)