2021-03-09 08:13:52 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2021-03-10 08:16:34 -08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<AdditionalFiles Include="..\..\codeAnalysis\StyleCop.json" Link="StyleCop.json" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Page Update="Themes\Dark.xaml">
|
|
|
|
|
|
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
|
|
|
|
|
|
</Page>
|
|
|
|
|
|
<Page Update="Themes\HighContrast1.xaml">
|
|
|
|
|
|
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
|
|
|
|
|
|
</Page>
|
|
|
|
|
|
<Page Update="Themes\HighContrast2.xaml">
|
|
|
|
|
|
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
|
|
|
|
|
|
</Page>
|
|
|
|
|
|
<Page Update="Themes\HighContrastBlack.xaml">
|
|
|
|
|
|
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
|
|
|
|
|
|
</Page>
|
|
|
|
|
|
<Page Update="Themes\HighContrastWhite.xaml">
|
|
|
|
|
|
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
|
|
|
|
|
|
</Page>
|
|
|
|
|
|
<Page Update="Themes\Light.xaml">
|
|
|
|
|
|
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
|
|
|
|
|
|
</Page>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2021-03-09 08:13:52 -08:00
|
|
|
|
</Project>
|