Skip to content

Commit

Permalink
⬆️ adjust .NET dependencies to target framework
Browse files Browse the repository at this point in the history
  • Loading branch information
koeeenig committed Dec 18, 2023
1 parent ef76bc4 commit 5e25be5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/BlazeKit.Core/BlazeKit.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.13" />
<PackageReference Condition="'$(TargetFramework)' == 'net8.0'" Include="Microsoft.AspNetCore.Components" Version="8.0.0" />
<PackageReference Condition="'$(TargetFramework)' == 'net7.0'" Include="Microsoft.AspNetCore.Components" Version="7.0.13" />
<PackageReference Include="Microsoft.JSInterop" Version="7.0.10" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\BlazeKit.Reactive\BlazeKit.Reactive.csproj" />
<ProjectReference Include="..\BlazeKit.Reactivity\BlazeKit.Reactivity.csproj" />
</ItemGroup>

</Project>
3 changes: 2 additions & 1 deletion src/BlazeKit.Reactivity/BlazeKit.Reactivity.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
<Content Include="icon.png" PackagePath="."></Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.13" />
<PackageReference Condition="'$(TargetFramework)' == 'net8.0'" Include="Microsoft.AspNetCore.Components" Version="8.0.0" />
<PackageReference Condition="'$(TargetFramework)' == 'net7.0'" Include="Microsoft.AspNetCore.Components" Version="7.0.13" />
<PackageReference Include="System.Collections" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 5e25be5

Please sign in to comment.