Skip to content

Commit ad8fead

Browse files
committed
fix: suppress NU5104 for preview-stack dependencies
.NET 10, Avalonia 12, and WebView2 are all in preview. The NU5104 "stable package with prerelease dependency" warning will self-resolve when upstream releases go stable. Added comment to track removal. Made-with: Cursor
1 parent c07079c commit ad8fead

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Directory.Build.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
<PropertyGroup>
33
<!-- Suppress experimental-API diagnostics for placeholder types defined in this solution. -->
44
<NoWarn>$(NoWarn);AGWV001;AGWV002;AGWV003;AGWV004;AGWV005</NoWarn>
5+
<!--
6+
NU5104: stable packages with prerelease dependencies.
7+
Temporary: .NET 10, Avalonia 12, and WebView2 are all in preview.
8+
Remove once upstream dependencies publish stable releases.
9+
-->
10+
<NoWarn>$(NoWarn);NU5104</NoWarn>
511

612
<!--
713
Allow building iOS targets when the installed Xcode is a compatible

0 commit comments

Comments
 (0)