|
1 | | -<Project Sdk="Microsoft.NET.Sdk.Razor"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk.Razor"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>net6.0</TargetFramework> |
| 4 | + <TargetFrameworks>net6.0;net7.0</TargetFrameworks> |
5 | 5 | <Nullable>disable</Nullable> |
6 | 6 | <ImplicitUsings>enable</ImplicitUsings> |
7 | | - <Version>6.0.12</Version> |
| 7 | + <Version>6.1.0</Version> |
8 | 8 | <Title>CodeBeam.MudBlazor.Extensions</Title> |
9 | 9 | <Authors>CodeBeam</Authors> |
10 | 10 | <Company>CodeBeam</Company> |
11 | | - <Description>MudBlazor extension components from contributors.</Description> |
| 11 | + <Description>MudBlazor extension components from contributors. Includes 20+ components and utilities.</Description> |
12 | 12 | <Copyright>CodeBeam OpenSource MIT</Copyright> |
13 | 13 | <PackageIcon>Mud_Secondary.png</PackageIcon> |
14 | 14 | <PackageProjectUrl>https://codebeam-mudextensions.pages.dev/</PackageProjectUrl> |
|
20 | 20 | <SupportedPlatform Include="browser" /> |
21 | 21 | </ItemGroup> |
22 | 22 |
|
23 | | - <ItemGroup> |
24 | | - <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.9" /> |
25 | | - <PackageReference Include="MudBlazor" Version="6.0.17" /> |
| 23 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' "> |
| 24 | + <PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.10" /> |
| 25 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.10" /> |
| 26 | + <PackageReference Include="MudBlazor" Version="6.1.2" /> |
26 | 27 | </ItemGroup> |
| 28 | + |
| 29 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' "> |
| 30 | + <PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.0.*" /> |
| 31 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.0.*" /> |
| 32 | + <PackageReference Include="MudBlazor" Version="6.1.2" /> |
| 33 | + </ItemGroup> |
27 | 34 |
|
28 | 35 | <!--Uncomment it on development and debug to generate min.css on rebuild--> |
29 | 36 | <!--This sections causes to fail auto deployment to CloudFlare--> |
|
0 commit comments