sq epan/dissectors/pidl/rcg/rcg.cnf
[wireshark-sm.git] / resources / wireshark.exe.manifest.in
blobec4d87ed4a04b8c20b0cb25611a99e514ad9a404
1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
3 <assemblyIdentity
4 version="@PROJECT_VERSION_MAJOR@.@PROJECT_VERSION_MINOR@.@PROJECT_VERSION_MICRO@.0"
5 processorArchitecture="@MANIFEST_PROCESSOR_ARCHITECTURE@"
6 name="WiresharkDevelopmentTeam.Wireshark"
7 type="win32"
8 />
9 <description>The world's most popular network protocol analyzer</description>
10 <dependency>
11 <dependentAssembly>
12 <assemblyIdentity
13 type="win32"
14 name="Microsoft.Windows.Common-Controls"
15 version="6.0.0.0"
16 processorArchitecture="@MANIFEST_PROCESSOR_ARCHITECTURE@"
17 publicKeyToken="6595b64144ccf1df"
18 language="*"
20 </dependentAssembly>
21 </dependency>
22 <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
23 <security>
24 <requestedPrivileges>
25 <requestedExecutionLevel
26 level="asInvoker"
27 uiAccess="false"
29 </requestedPrivileges>
30 </security>
31 </trustInfo>
32 <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
33 <application>
34 <!-- This should match the following:
35 - The NTDDI_VERSION and _WIN32_WINNT parts of cmakeconfig.h.in
36 - The WinVer parts of packaging\nsis\wireshark.nsi
37 - The VersionNT parts of packaging\wix\Prerequisites.wxi
38 -->
39 <!-- Windows 10 & 11 -->
40 <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
41 </application>
42 <!-- Set our process code page to UTF-8
43 https://docs.microsoft.com/en-us/windows/apps/design/globalizing/use-utf8-code-page
44 https://nullprogram.com/blog/2021/12/30/
45 -->
46 <windowsSettings>
47 <activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
48 </windowsSettings>
49 </compatibility>
50 <!--
51 MSDN recommends setting our DPI awareness to PerMonitorV2 instead
52 of PerMonitor. Unfortunately that causes layout issues with Qt
53 5.6 and 5.9. For now enable PerMonitor DPI awareness by enabling
54 Qt::AA_EnableHighDpiScaling in ui/qt/main.cpp.
55 Qt 6 is is Per-Monitor DPI Aware V2 by default.
56 -->
57 <!--
58 <application xmlns="urn:schemas-microsoft-com:asm.v3">
59 <windowsSettings>
60 <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
61 </windowsSettings>
62 </application>
63 -->
64 </assembly>