|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk.Razor"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net5.0;net6.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks> |
5 | 5 | <RazorLangVersion>3.0</RazorLangVersion> |
6 | 6 | <Authors>Arnaud Leclerc</Authors> |
7 | 7 | <Company /> |
|
37 | 37 | <None Include="tsconfig.json" /> |
38 | 38 | </ItemGroup> |
39 | 39 |
|
| 40 | + <ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> |
| 41 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.25" /> |
| 42 | + <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" /> |
| 43 | + </ItemGroup> |
40 | 44 |
|
41 | | - <ItemGroup Condition="'$(TargetFramework)' == 'net5.0'"> |
42 | | - <PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0" /> |
43 | | - <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0" /> |
44 | | - <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="5.0.0" /> |
45 | | - <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" /> |
| 45 | + <ItemGroup Condition="'$(TargetFramework)' == 'net7.0'"> |
| 46 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.14" /> |
| 47 | + <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" /> |
46 | 48 | </ItemGroup> |
47 | 49 |
|
48 | | - <ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> |
49 | | - <PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.0" /> |
50 | | - <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.0" /> |
51 | | - <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" /> |
52 | | - <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" /> |
| 50 | + <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
| 51 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" /> |
| 52 | + <PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" /> |
53 | 53 | </ItemGroup> |
54 | 54 |
|
55 | 55 | </Project> |
0 commit comments