NetDocsForLLM/App.xaml

15 lines
607 B
XML

<Application x:Class="NetDocsForLLM.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:NetDocsForLLM"
xmlns:converters="clr-namespace:NetDocsForLLM.Converters">
<Application.Resources>
<ResourceDictionary>
<!-- Converters -->
<converters:EnumBooleanConverter x:Key="EnumBooleanConverter"/>
<!-- Other resources -->
</ResourceDictionary>
</Application.Resources>
</Application>