|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk.Web"> |
2 | | - |
3 | 2 | <PropertyGroup> |
4 | | - <TargetFramework>net7.0</TargetFramework> |
| 3 | + <TargetFrameworks>net8.0;net10.0</TargetFrameworks> |
5 | 4 | <Nullable>enable</Nullable> |
6 | 5 | <ImplicitUsings>enable</ImplicitUsings> |
7 | 6 | <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> |
8 | 7 | </PropertyGroup> |
9 | 8 |
|
10 | 9 | <ItemGroup> |
11 | | - <PackageReference Include="Fido2.AspNet" Version="3.0.0" /> |
12 | | - <PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.0" /> |
13 | | - <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.0" /> |
14 | | - <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.0" /> |
15 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="7.0.0" /> |
16 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" /> |
17 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.0"> |
| 10 | + <PackageReference Include="Fido2.AspNet" Version="3.0.1" /> |
| 11 | + <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" /> |
| 12 | + <PackageReference Include="NetDevPack" Version="8.0.2" /> |
| 13 | + </ItemGroup> |
| 14 | + |
| 15 | + <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
| 16 | + <PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="8.0.23" /> |
| 17 | + <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.23" /> |
| 18 | + <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.23" /> |
| 19 | + <PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.23" /> |
| 20 | + <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.23" /> |
| 21 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.23"> |
18 | 22 | <PrivateAssets>all</PrivateAssets> |
19 | 23 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
20 | 24 | </PackageReference> |
21 | | - <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.15.1" /> |
22 | | - <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.0" /> |
23 | | - <PackageReference Include="NetDevPack" Version="6.0.1" /> |
| 25 | + <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.23" /> |
24 | 26 | </ItemGroup> |
25 | 27 |
|
26 | | - <ItemGroup> |
27 | | - <ProjectReference Include="..\..\src\NetDevPack.Fido2.EntityFramework.Store\NetDevPack.Fido2.EntityFramework.Store.csproj" /> |
| 28 | + <ItemGroup Condition="'$(TargetFramework)' == 'net10.0'"> |
| 29 | + <PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.2" /> |
| 30 | + <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.2" /> |
| 31 | + <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="10.0.2" /> |
| 32 | + <PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.2" /> |
| 33 | + <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.2" /> |
| 34 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.2"> |
| 35 | + <PrivateAssets>all</PrivateAssets> |
| 36 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 37 | + </PackageReference> |
| 38 | + <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="10.0.2" /> |
28 | 39 | </ItemGroup> |
29 | 40 |
|
| 41 | + <ItemGroup> |
| 42 | + <ProjectReference Include="..\\..\\src\\NetDevPack.Fido2.EntityFramework.Store\\NetDevPack.Fido2.EntityFramework.Store.csproj" /> |
| 43 | + </ItemGroup> |
30 | 44 | </Project> |
0 commit comments