2026-03-27 19:00:26 -04:00
|
|
|
<Application xmlns="https://github.com/avaloniaui"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2026-06-24 18:35:51 -05:00
|
|
|
xmlns:converters="using:LANCommander.Launcher.Converters"
|
2026-06-06 05:49:24 -05:00
|
|
|
x:Class="LANCommander.Launcher.Tests.TestApp"
|
2026-03-27 19:00:26 -04:00
|
|
|
RequestedThemeVariant="Dark">
|
|
|
|
|
<Application.Styles>
|
|
|
|
|
<FluentTheme />
|
|
|
|
|
</Application.Styles>
|
2026-06-24 18:35:51 -05:00
|
|
|
|
|
|
|
|
<!-- Converters that views resolve from the application's resource scope.
|
|
|
|
|
The real App.axaml declares these globally; mirror only what the views
|
|
|
|
|
under test require so unstyled baselines stay otherwise unchanged. -->
|
|
|
|
|
<Application.Resources>
|
|
|
|
|
<converters:MultiplyConverter x:Key="MultiplyConverter" />
|
|
|
|
|
</Application.Resources>
|
2026-03-27 19:00:26 -04:00
|
|
|
</Application>
|