26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
||
|
|
<assemblyIdentity version="1.0.0.0" name="VoiceCat.App.app"/>
|
||
|
|
|
||
|
|
<!-- DPI awareness is set via the .csproj's ApplicationHighDpiMode property instead of here
|
||
|
|
— WinForms' WFO0003 analyzer flags manifest-based DPI settings as superseded by that
|
||
|
|
property in modern .NET. -->
|
||
|
|
|
||
|
|
<!-- Windows 10/11 common-controls v6 (visual styles) — also a prerequisite for some UIA
|
||
|
|
features/visuals screen readers rely on. -->
|
||
|
|
<dependency>
|
||
|
|
<dependentAssembly>
|
||
|
|
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0"
|
||
|
|
processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*"/>
|
||
|
|
</dependentAssembly>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||
|
|
<application>
|
||
|
|
<!-- Windows 8.1 / 10 / 11 -->
|
||
|
|
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
|
||
|
|
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
||
|
|
</application>
|
||
|
|
</compatibility>
|
||
|
|
</assembly>
|