Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,15 @@
<Product>Performance Studio</Product>
<Copyright>Copyright (c) 2026 Erik Darling, Darling Data LLC</Copyright>
</PropertyGroup>

<!--
Silence AVLN3001 ("XAML resource won't be reachable via runtime loader,
no public constructor was found"). All flagged controls take typed
constructor dependencies (ServerConnection, ICredentialService, ...) and
are instantiated directly in code-behind — they're never loaded via
AvaloniaXamlLoader.Load() and the IDE previewer isn't used.
-->
<PropertyGroup>
<NoWarn>$(NoWarn);AVLN3001</NoWarn>
</PropertyGroup>
</Project>
Loading