Skip to content

Commit 2c6467c

Browse files
committed
- Use latest .NET SDKs
- Update NuGet packages
1 parent 34e0e11 commit 2c6467c

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

Directory.Packages.props

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
<PropertyGroup>
33
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
44
<RuntimeVersion8>8.0.0</RuntimeVersion8>
5-
<AspNetCoreVersion8>8.0.12</AspNetCoreVersion8>
6-
<EfCoreVersion8>8.0.12</EfCoreVersion8>
7-
<RuntimeVersion9>9.0.1</RuntimeVersion9>
8-
<AspNetCoreVersion9>9.0.1</AspNetCoreVersion9>
9-
<EfCoreVersion9>9.0.1</EfCoreVersion9>
5+
<AspNetCoreVersion8>8.0.13</AspNetCoreVersion8>
6+
<EfCoreVersion8>8.0.13</EfCoreVersion8>
7+
<RuntimeVersion9>9.0.2</RuntimeVersion9>
8+
<AspNetCoreVersion9>9.0.2</AspNetCoreVersion9>
9+
<EfCoreVersion9>9.0.2</EfCoreVersion9>
1010
</PropertyGroup>
1111
<ItemGroup>
1212
<!-- For Sample Apps -->
1313
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.11.0" />
14-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" version="4.11.2" />
15-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.11.2" />
14+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" version="4.11.3" />
15+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.11.3" />
1616
<!-- Test dependencies -->
1717
<PackageVersion Include="bunit" Version="1.33.3" />
1818
<PackageVersion Include="FluentAssertions" Version="6.12.0" />
19-
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
19+
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
2020
<PackageVersion Include="xunit" Version="2.9.2" />
2121
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
2222
<PackageVersion Include="coverlet.msbuild" Version="6.0.0" />

examples/Demo/Shared/Pages/Dialog/Examples/DialogEditableExample.razor

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
@code
1313
{
14-
string TestData = "Test Data";
14+
1515
SimpleEditDialog.RegisterContent DialogData { get; set; } = new() { Id = 1, Name = "Denis", Age = 24 };
1616

1717
private async Task EditAsync()
@@ -38,8 +38,9 @@
3838

3939
private async Task EditSafeAsync()
4040
{
41-
// When replacing the line below with the commented one, the code will not compile
42-
//var dialog = await DialogService.ShowAsync(DialogHelper.From<SimpleEditDialog>() ,TestData, new DialogParameters()
41+
//string TestData = "Test Data";
42+
//var dialog = await DialogService.ShowDialogAsync(DialogHelper.From<SimpleEditDialog>(), TestData, new DialogParameters()
43+
// When replacing the line below with the commented ones above, the code will not compile
4344
var dialog = await DialogService.ShowDialogAsync(DialogHelper.From<SimpleEditDialog>(), DialogData, new DialogParameters()
4445
{
4546
Height = "400px",

0 commit comments

Comments
 (0)