Skip to content

Commit 1d4bcf2

Browse files
authored
Last commit before net7 support (#55)
1 parent 58da671 commit 1d4bcf2

File tree

1 file changed

+36
-34
lines changed

1 file changed

+36
-34
lines changed
Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,38 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

3-
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
5-
<Nullable>disable</Nullable>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Version>6.1.0</Version>
8-
<Title>CodeBeam.MudBlazor.Extensions</Title>
9-
<Authors>CodeBeam</Authors>
10-
<Company>CodeBeam</Company>
11-
<Description>MudBlazor extension components from contributors. Includes 20+ components and utilities.</Description>
12-
<Copyright>CodeBeam OpenSource MIT</Copyright>
13-
<PackageIcon>Mud_Secondary.png</PackageIcon>
14-
<PackageProjectUrl>https://codebeam-mudextensions.pages.dev/</PackageProjectUrl>
15-
<RepositoryUrl>https://github.com/CodeBeamOrg/CodeBeam.MudExtensions</RepositoryUrl>
16-
<PackageTags>Blazor; MudBlazor; Component; Extension; Animate; Stepper; Loading; Gallery</PackageTags>
17-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
5+
<Nullable>disable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Version>6.1.0</Version>
8+
<Title>CodeBeam.MudBlazor.Extensions</Title>
9+
<Authors>CodeBeam</Authors>
10+
<Company>CodeBeam</Company>
11+
<Description>MudBlazor extension components from contributors. Includes 20+ components and utilities.</Description>
12+
<Copyright>CodeBeam OpenSource MIT</Copyright>
13+
<PackageIcon>Mud_Secondary.png</PackageIcon>
14+
<PackageProjectUrl>https://codebeam-mudextensions.pages.dev/</PackageProjectUrl>
15+
<RepositoryUrl>https://github.com/CodeBeamOrg/CodeBeam.MudExtensions</RepositoryUrl>
16+
<PackageTags>Blazor; MudBlazor; Component; Extension; Animate; Stepper; Loading; Gallery</PackageTags>
17+
</PropertyGroup>
1818

19-
<ItemGroup>
20-
<SupportedPlatform Include="browser" />
21-
</ItemGroup>
19+
<ItemGroup>
20+
<SupportedPlatform Include="browser" />
21+
</ItemGroup>
22+
23+
<ItemGroup>
24+
<PackageReference Include="MudBlazor" Version="6.1.2" />
25+
</ItemGroup>
26+
27+
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
28+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.10" />
29+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.10" />
30+
</ItemGroup>
2231

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" />
27-
</ItemGroup>
28-
2932
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
3033
<PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.0.*" />
3134
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.0.*" />
32-
<PackageReference Include="MudBlazor" Version="6.1.2" />
33-
</ItemGroup>
35+
</ItemGroup>
3436

3537
<!--Uncomment it on development and debug to generate min.css on rebuild-->
3638
<!--This sections causes to fail auto deployment to CloudFlare-->
@@ -48,17 +50,17 @@
4850
</ItemGroup>
4951

5052
<ItemGroup>
51-
<None Include="..\..\..\..\Desktop\Mud_Secondary.png">
52-
<Pack>True</Pack>
53-
<PackagePath>\</PackagePath>
54-
</None>
55-
<None Include="Components\SwitchM3\MudSwitchM3.razor" />
53+
<None Include="..\..\..\..\Desktop\Mud_Secondary.png">
54+
<Pack>True</Pack>
55+
<PackagePath>\</PackagePath>
56+
</None>
57+
<None Include="Components\SwitchM3\MudSwitchM3.razor" />
5658
</ItemGroup>
5759

5860
<ItemGroup>
59-
<Content Update="Components\Splitter\MudSplitter.razor">
60-
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
61-
</Content>
61+
<Content Update="Components\Splitter\MudSplitter.razor">
62+
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
63+
</Content>
6264
</ItemGroup>
6365

6466
</Project>

0 commit comments

Comments
 (0)