File tree Expand file tree Collapse file tree
Material.Blazor.Website.Server
Material.Blazor.Website.WebAssembly Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 </PropertyGroup >
55
66 <ItemGroup >
7- <PackageReference Include =" bunit" Version =" 1.38 .5" />
8- <PackageReference Include =" bunit.core" Version =" 1.38 .5" />
9- <PackageReference Include =" bunit.web" Version =" 1.38 .5" />
10- <PackageReference Include =" Microsoft.AspNetCore.Components.Authorization" Version =" 8.0.14 " />
7+ <PackageReference Include =" bunit" Version =" 1.39 .5" />
8+ <PackageReference Include =" bunit.core" Version =" 1.39 .5" />
9+ <PackageReference Include =" bunit.web" Version =" 1.39 .5" />
10+ <PackageReference Include =" Microsoft.AspNetCore.Components.Authorization" Version =" 8.0.15 " />
1111 <PackageReference Include =" NSubstitute" Version =" 5.3.0" />
1212 <PackageReference Include =" xunit" Version =" 2.9.3" />
13- <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.1 " >
13+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 3.0.2 " >
1414 <PrivateAssets >all</PrivateAssets >
1515 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1616 </PackageReference >
17- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.12 .0" />
17+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.13 .0" />
1818 </ItemGroup >
1919 <ItemGroup >
2020 <ProjectReference Include =" ..\Material.Blazor\Material.Blazor.csproj" />
Original file line number Diff line number Diff line change 1313 </PropertyGroup >
1414
1515 <ItemGroup >
16- <PackageReference Include =" Microsoft.AspNetCore.Components" Version =" 8.0.14 " />
17- <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 8.0.14 " />
18- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.Server" Version =" 8.0.14 " />
16+ <PackageReference Include =" Microsoft.AspNetCore.Components" Version =" 8.0.15 " />
17+ <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 8.0.15 " />
18+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.Server" Version =" 8.0.15 " />
1919 <PackageReference Include =" Microsoft.Extensions.Http" Version =" 8.0.1" />
2020 <PackageReference Include =" Microsoft.Extensions.Logging" Version =" 8.0.1" />
2121 <PackageReference Include =" Microsoft.Extensions.Logging.Abstractions" Version =" 8.0.3" />
Original file line number Diff line number Diff line change 4646 // Option 1: add options to services, which are then accessed by the Material Blazor services.
4747 builder . Services . AddOptions < MBServicesOptions > ( ) . Configure ( options =>
4848 {
49- options . LoggingServiceConfiguration = Utilities . GetDefaultLoggingServiceConfiguration ( ) ;
50- options . SnackbarServiceConfiguration = Utilities . GetDefaultSnackbarServiceConfiguration ( ) ;
51- options . ToastServiceConfiguration = Utilities . GetDefaultToastServiceConfiguration ( ) ;
49+ options . LoggingServiceConfiguration = new MBLoggingServiceConfiguration ( ) ;
50+ options . SnackbarServiceConfiguration = new MBSnackbarServiceConfiguration ( ) ;
51+ options . ToastServiceConfiguration = new MBToastServiceConfiguration ( ) ;
5252 } ) ;
5353
5454 builder . Services . AddMBServices ( ) ;
5555
5656 // Option 2: add options within the call to add the Material.Blazor services.
5757 //builder.Services.AddMBServices(options =>
5858 //{
59- // options.LoggingServiceConfiguration = Utilities.GetDefaultLoggingServiceConfiguration ();
60- // options.SnackbarServiceConfiguration = Utilities.GetDefaultSnackbarServiceConfiguration ();
61- // options.ToastServiceConfiguration = Utilities.GetDefaultToastServiceConfiguration ();
59+ // options.LoggingServiceConfiguration = new MBLoggingServiceConfiguration ();
60+ // options.SnackbarServiceConfiguration = new MBSnackbarServiceConfiguration ();
61+ // options.ToastServiceConfiguration = new MBToastServiceConfiguration ();
6262 //});
6363
6464 builder . Services . AddGBService ( options =>
Original file line number Diff line number Diff line change 55 </PropertyGroup >
66
77 <ItemGroup >
8- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 8.0.14 " />
9- <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 8.0.14 " PrivateAssets =" all" />
8+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly" Version =" 8.0.15 " />
9+ <PackageReference Include =" Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version =" 8.0.15 " PrivateAssets =" all" />
1010 <PackageReference Include =" Serilog.Extensions.Logging" Version =" 8.0.0" />
1111 <PackageReference Include =" Serilog.Sinks.Async" Version =" 2.1.0" />
1212 <PackageReference Include =" Serilog.Sinks.BrowserConsole" Version =" 8.0.0" />
Original file line number Diff line number Diff line change 2121// Option 1: add options to services, which are then accessed by the Material Blazor services.
2222//builder.Services.AddOptions<MBServicesOptions>().Configure(options =>
2323//{
24- // options.LoggingServiceConfiguration = Utilities.GetDefaultLoggingServiceConfiguration ();
25- // options.SnackbarServiceConfiguration = Utilities.GetDefaultSnackbarServiceConfiguration ();
26- // options.ToastServiceConfiguration = Utilities.GetDefaultToastServiceConfiguration ();
24+ // options.LoggingServiceConfiguration = new MBLoggingServiceConfiguration ();
25+ // options.SnackbarServiceConfiguration = new MBSnackbarServiceConfiguration ();
26+ // options.ToastServiceConfiguration = new MBToastServiceConfiguration ();
2727//});
2828
2929// Option 2: add options within the call to add the Material.Blazor services.
3030builder . Services . AddMBServices ( options =>
3131{
32- options . LoggingServiceConfiguration = Utilities . GetDefaultLoggingServiceConfiguration ( ) ;
33- options . SnackbarServiceConfiguration = Utilities . GetDefaultSnackbarServiceConfiguration ( ) ;
34- options . ToastServiceConfiguration = Utilities . GetDefaultToastServiceConfiguration ( ) ;
32+ options . LoggingServiceConfiguration = new MBLoggingServiceConfiguration ( ) ;
33+ options . SnackbarServiceConfiguration = new MBSnackbarServiceConfiguration ( ) ;
34+ options . ToastServiceConfiguration = new MBToastServiceConfiguration ( ) ;
3535} ) ;
3636
3737builder . Services . AddMBServices ( ) ;
Original file line number Diff line number Diff line change 2929
3030 <ItemGroup >
3131 <PackageReference Include =" GoogleAnalytics.Blazor" Version =" 1.0.3" />
32- <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 8.0.14 " />
33- <PackageReference Include =" Microsoft.AspNetCore.Components" Version =" 8.0.14 " />
32+ <PackageReference Include =" Microsoft.AspNetCore.Components.Web" Version =" 8.0.15 " />
33+ <PackageReference Include =" Microsoft.AspNetCore.Components" Version =" 8.0.15 " />
3434 </ItemGroup >
3535
3636 <ItemGroup >
Original file line number Diff line number Diff line change 330330 {
331331 if (disposing )
332332 {
333- ToastService .Configuration = Utilities . GetDefaultToastServiceConfiguration ();
333+ ToastService .Configuration = new MBToastServiceConfiguration ();
334334 }
335335
336336 // O: free unmanaged resources (unmanaged objects) and override finalizer
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2626 "author" : " " ,
2727 "license" : " MIT" ,
2828 "devDependencies" : {
29- "@babel/cli" : " ^7.26.4 " ,
29+ "@babel/cli" : " ^7.27.0 " ,
3030 "@babel/core" : " ^7.26.10" ,
3131 "@babel/plugin-transform-class-properties" : " ^7.25.9" ,
3232 "@babel/plugin-transform-object-rest-spread" : " ^7.25.9" ,
3333 "@babel/plugin-transform-runtime" : " ^7.26.10" ,
3434 "@babel/preset-env" : " ^7.26.9" ,
35- "@babel/preset-typescript" : " ^7.26 .0" ,
35+ "@babel/preset-typescript" : " ^7.27 .0" ,
3636 "babel-loader" : " ^9.2.1" ,
37- "fork-ts-checker-webpack-plugin" : " ^9.0.2 " ,
37+ "fork-ts-checker-webpack-plugin" : " ^9.1.0 " ,
3838 "material-components-web" : " 14.0.0" ,
3939 "regexp" : " ^1.0.0" ,
4040 "sass" : " 1.39.2" ,
4141 "terser" : " ^5.39.0" ,
4242 "ts-loader" : " ^9.5.2" ,
43- "typescript" : " ^5.8.2 " ,
44- "webpack" : " ^5.98.0 " ,
43+ "typescript" : " ^5.8.3 " ,
44+ "webpack" : " ^5.99.5 " ,
4545 "webpack-cli" : " ^5.1.4"
4646 }
4747}
You can’t perform that action at this time.
0 commit comments