Skip to content

Commit 7a78774

Browse files
committed
.net 9.0 support added
1 parent 2972113 commit 7a78774

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

blazorbootstrap/BlazorBootstrap.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<!--<Company>your_company</Company>-->
1717
<Copyright>Copyright © 2024 Blazor Bootstrap</Copyright>
1818

19-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
19+
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
2020
<Nullable>enable</Nullable>
2121
<ImplicitUsings>enable</ImplicitUsings>
2222
<OutputType>Library</OutputType>
@@ -44,17 +44,17 @@
4444
<SupportedPlatform Include="browser" />
4545
</ItemGroup>
4646

47-
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
47+
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
4848
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.36" />
4949
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.1" />
5050
</ItemGroup>
5151

52-
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
52+
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
5353
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.11" />
5454
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
5555
</ItemGroup>
5656

57-
<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
57+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
5858
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.0" />
5959
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.0" />
6060
</ItemGroup>

0 commit comments

Comments
 (0)