Skip to content

Commit

Permalink
Add .NET 8 target
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonSpors authored Nov 22, 2023
1 parent 053989c commit 72f98c5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Blazored.LocalStorage/Blazored.LocalStorage.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>

<Authors>Chris Sainty</Authors>
<Company>Chris Sainty</Company>
Expand Down Expand Up @@ -38,6 +38,10 @@
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="$(DotNet7Version)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="$(DotNet8Version)" />
</ItemGroup>

<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
Expand All @@ -58,4 +62,4 @@
</AssemblyAttribute>
</ItemGroup>

</Project>
</Project>

0 comments on commit 72f98c5

Please sign in to comment.