Skip to content

Commit 4fc87fa

Browse files
committed
Update Fluent UI to latest daily build
1 parent 5b9eed3 commit 4fc87fa

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
<PackageVersion Include="Microsoft.Agents.AI.OpenAI" Version="1.17.0" />
124124
<PackageVersion Include="Microsoft.Data.SqlClient" Version="7.0.2" />
125125
<PackageVersion Include="Microsoft.Data.SqlClient.Extensions.Azure" Version="7.0.2" />
126-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="5.0.0-rc.5-26219.1" />
126+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="5.0.0-preview.26232.1" />
127127
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="5.0.0-rc.5-26219.1" />
128128
<PackageVersion Include="Milvus.Client" Version="2.3.0-preview.1" /> <!-- No stable release available -->
129129
<PackageVersion Include="ModelContextProtocol" Version="1.3.0" />

NuGet.config

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,13 @@
2929
</packageSource>
3030
<packageSource key="dotnet-public">
3131
<package pattern="*" />
32-
<!-- FluentUI is present on both public an internal dotnet feeds. Prefer public feed -->
33-
<package pattern="Microsoft.FluentUI.AspNetCore.Components" />
32+
<!-- The Icons package isn't published with each Fluent UI daily build. -->
3433
<package pattern="Microsoft.FluentUI.AspNetCore.Components.Icons" />
3534
</packageSource>
3635
<packageSource key="dotnet9">
3736
<package pattern="*" />
37+
<!-- Fluent UI daily builds are published to the dotnet9 feed. -->
38+
<package pattern="Microsoft.FluentUI.AspNetCore.Components" />
3839
</packageSource>
3940
<packageSource key="dotnet10">
4041
<package pattern="*" />

src/Aspire.Dashboard/Aspire.Dashboard.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
<!--
1717
CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
1818
CS8002: Referenced assembly does not have a strong name
19+
NU3018, NU3027: Fluent UI daily package signature warnings documented in https://github.com/microsoft/fluentui-blazor/blob/dev-v5/docs/using-latest-daily.md
1920
-->
20-
<NoWarn>$(NoWarn);CS1591;CS8002</NoWarn>
21+
<NoWarn>$(NoWarn);CS1591;CS8002;NU3018;NU3027</NoWarn>
2122
<WarningsNotAsErrors>$(WarningsNotAsErrors);ASPDEPR005;BL0011;BL0012;BL0016;CS0618;IL2026;IL2057;IL2062;IL2065;IL2067;IL2072;IL2080;IL2101;IL2104;IL2110;IL2111;IL3002;IL3050;IL3053;SYSLIB0026;SYSLIB0027;SYSLIB0028;SYSLIB0057;SYSLIB0065</WarningsNotAsErrors>
2223
<IlcTreatWarningsAsErrors>false</IlcTreatWarningsAsErrors>
2324

tests/Aspire.Dashboard.Components.Tests/Pages/TraceDetailsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public void Render_HasTrace_SubscriptionRemovedOnDispose()
8181
Assert.Equal(nameof(TelemetryRepository.OnNewTraces), t.Name);
8282
});
8383

84-
DisposeComponents();
84+
cut.Instance.Dispose();
8585

8686
Assert.Empty(telemetryRepository.TracesSubscriptions);
8787
}

0 commit comments

Comments
 (0)