File tree Expand file tree Collapse file tree 12 files changed +47
-24
lines changed Expand file tree Collapse file tree 12 files changed +47
-24
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.BlazorWebAssembly" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net7 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
<ImplicitUsings >enable</ImplicitUsings >
7
7
<InvariantGlobalization >true</InvariantGlobalization >
10
10
</PropertyGroup >
11
11
12
12
<ItemGroup >
13
- <PackageReference Include =" Bit.BlazorUI" Version =" 5.3.0-pre-06 " />
14
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 7 .0.10 " />
15
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 7 .0.10 " PrivateAssets =" all" />
13
+ <PackageReference Include =" Bit.BlazorUI" Version =" 9.5.0 " />
14
+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 9 .0.2 " />
15
+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 9 .0.2 " PrivateAssets =" all" />
16
16
</ItemGroup >
17
17
18
18
</Project >
Original file line number Diff line number Diff line change 12
12
<BitLabel For =" label-input" >A Label for An Input</BitLabel >
13
13
<input type =" text" name =" label-input" id =" label-input" />
14
14
15
- <BitProgressIndicator Label =" Progress"
16
- Description =" Example progress"
17
- BarHeight =" 20" />
15
+ <BitProgress Label =" Progress"
16
+ Description =" Example progress" />
18
17
</div >
19
18
20
19
<style >
Original file line number Diff line number Diff line change 5
5
< meta charset ="utf-8 " />
6
6
< title > Bit.BlazorUI.Benchmark</ title >
7
7
< base href ="/ " />
8
- < link href ="_content/Bit.BlazorUI/styles/bit.blazorui.min. css " rel ="stylesheet " />
8
+ < link href ="_content/Bit.BlazorUI/styles/bit.blazorui.css " rel ="stylesheet " />
9
9
</ head >
10
10
11
11
< body >
12
12
< div id ="app "> Loading...</ div >
13
13
14
14
< script src ="_framework/blazor.webassembly.js "> </ script >
15
- < script src ="_content/Bit.BlazorUI/scripts/bit.blazorui.min. js "> </ script >
15
+ < script src ="_content/Bit.BlazorUI/scripts/bit.blazorui.js "> </ script >
16
16
17
17
</ body >
18
18
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : 1 ,
3
+ "isRoot" : true ,
4
+ "tools" : {
5
+ "dotnet-ef" : {
6
+ "version" : " 9.0.2" ,
7
+ "commands" : [
8
+ " dotnet-ef"
9
+ ],
10
+ "rollForward" : false
11
+ }
12
+ }
13
+ }
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net7 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
<ImplicitUsings >enable</ImplicitUsings >
7
7
</PropertyGroup >
8
8
9
9
<ItemGroup >
10
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.Server" Version =" 7 .0.10 " />
10
+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.Server" Version =" 9 .0.2 " />
11
11
</ItemGroup >
12
12
13
13
<ItemGroup >
Original file line number Diff line number Diff line change 35
35
app . UseResponseCompression ( ) ;
36
36
}
37
37
app . UseBlazorFrameworkFiles ( ) ;
38
- app . UseStaticFiles ( ) ;
38
+ app . MapStaticAssets ( ) ;
39
39
40
40
app . UseRouting ( ) ;
41
41
Original file line number Diff line number Diff line change 2
2
3
3
<MudThemeProvider />
4
4
<MudDialogProvider />
5
+ <MudPopoverProvider />
5
6
<MudSnackbarProvider />
6
7
7
8
<main >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.BlazorWebAssembly" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net7 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
<ImplicitUsings >enable</ImplicitUsings >
7
7
<InvariantGlobalization >true</InvariantGlobalization >
10
10
</PropertyGroup >
11
11
12
12
<ItemGroup >
13
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 7 .0.10 " />
14
- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 7 .0.10 " PrivateAssets =" all" />
15
- <PackageReference Include =" MudBlazor" Version =" 6.8 .0" />
13
+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 9 .0.2 " />
14
+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 9 .0.2 " PrivateAssets =" all" />
15
+ <PackageReference Include =" MudBlazor" Version =" 8.3 .0" />
16
16
</ItemGroup >
17
17
18
18
</Project >
Original file line number Diff line number Diff line change 4
4
<MudButton Variant =" Variant.Filled" OnClick =" IncreaseCounter" >@( $" Counter: {counter }" ) </MudButton >
5
5
6
6
<MudDatePicker Style =" max-width: 350px"
7
- AriaLabel =" Select a date"
8
7
Placeholder =" Select a date..." />
9
8
10
- <MudProgressLinear Label =" Progress"
11
- Value =" 30"
12
- Description =" Example progress"
13
- BarHeight =" 20" />
9
+ <MudProgressLinear
10
+ Value =" 30" />
14
11
15
12
<MudIconButton Icon =" @Icons.Material.Filled.Delete" aria-label =" delete" ></MudIconButton >
16
13
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : 1 ,
3
+ "isRoot" : true ,
4
+ "tools" : {
5
+ "dotnet-ef" : {
6
+ "version" : " 9.0.2" ,
7
+ "commands" : [
8
+ " dotnet-ef"
9
+ ],
10
+ "rollForward" : false
11
+ }
12
+ }
13
+ }
You can’t perform that action at this time.
0 commit comments