Upload manifest.xml
Browse files- manifest.xml +23 -0
manifest.xml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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="1.0.0.0"
|
| 5 |
+
processorArchitecture="amd64"
|
| 6 |
+
name="fastsearch"
|
| 7 |
+
type="win32"
|
| 8 |
+
/>
|
| 9 |
+
<description>fastsearch - Instant File Search</description>
|
| 10 |
+
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
| 11 |
+
<security>
|
| 12 |
+
<requestedPrivileges>
|
| 13 |
+
<requestedExecutionLevel level="requireAdministrator" uiAccess="false"/>
|
| 14 |
+
</requestedPrivileges>
|
| 15 |
+
</security>
|
| 16 |
+
</trustInfo>
|
| 17 |
+
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
| 18 |
+
<application>
|
| 19 |
+
<!-- Windows 10/11 -->
|
| 20 |
+
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
|
| 21 |
+
</application>
|
| 22 |
+
</compatibility>
|
| 23 |
+
</assembly>
|