Skip to content

Commit

Permalink
Added .net 9 TargetFramework
Browse files Browse the repository at this point in the history
  • Loading branch information
cagemaan authored Nov 13, 2024
1 parent b5f0317 commit 85da5a3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/MudBlazor.StaticInput.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Company>Ophois</Company>
Expand All @@ -23,12 +23,15 @@
<ItemGroup>
<PackageReference Include="MudBlazor" Version="8.0.0-preview.4" />
</ItemGroup>

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

<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.*" />
</ItemGroup>
<ItemGroup>
<None Include="..\content\nuget.png">
<Pack>True</Pack>
Expand Down

0 comments on commit 85da5a3

Please sign in to comment.