bild scripts, version info, icon and manifest
@@ -0,0 +1,53 @@ | ||
1 | +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
2 | +<!-- | |
3 | + This manifest tells Windows Vista to Windows 10 not to virtualize any file | |
4 | + or registry access. Also, it disables themes support. | |
5 | + --> | |
6 | + <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | |
7 | + <assemblyIdentity version="1.0.0.0" | |
8 | + processorArchitecture="*" | |
9 | + name="template from dzlib build tools" | |
10 | + type="win32"/> | |
11 | +<!-- We do not want themes support | |
12 | + <dependency> | |
13 | + <dependentassembly> | |
14 | + <assemblyidentity type="win32" | |
15 | + name="Microsoft.Windows.Common-Controls" | |
16 | + version="6.0.0.0" | |
17 | + publickeytoken="6595b64144ccf1df" | |
18 | + language="*" processorarchitecture="*"> | |
19 | + </assemblyidentity> | |
20 | + </dependentassembly> | |
21 | + <dependency> | |
22 | + --> | |
23 | + <description>This application was built using buildtools from dzlib</description> | |
24 | + <!-- COMPATIBILITY SECTION SPECIFIES IF APP IS COMPLIANT | |
25 | + DISABLES PCA IF SPECIFIED --> | |
26 | + <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> | |
27 | + <application> | |
28 | + <!-- We support Windows Vista --> | |
29 | + <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> | |
30 | + <!-- We support Windows 7 --> | |
31 | + <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> | |
32 | + <!-- We support Windows 8 --> | |
33 | + <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> | |
34 | + <!-- We support Windows 8.1 --> | |
35 | + <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> | |
36 | + <!-- We support Windows 10 --> | |
37 | + <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> | |
38 | + </application> | |
39 | + </compatibility> | |
40 | + | |
41 | + <!-- TRUSTINFO SECTION SPECIFIES REQUESTED PERMISSIONS AND | |
42 | + UIPI DISABLEMENT (SPECIAL CONDITIONS APPLY TO UIPI DISABLEMENT)--> | |
43 | + <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | |
44 | + <security> | |
45 | + <requestedPrivileges> | |
46 | + <requestedExecutionLevel | |
47 | + level="asInvoker" | |
48 | + uiAccess="false" | |
49 | + /> | |
50 | + </requestedPrivileges> | |
51 | + </security> | |
52 | + </trustInfo> | |
53 | +</assembly> | |
\ No newline at end of file |
@@ -0,0 +1,18 @@ | ||
1 | +[Version Info] | |
2 | +AutoIncBuild=0 | |
3 | +Build=0 | |
4 | +MajorVer=1 | |
5 | +MinorVer=0 | |
6 | +Release=0 | |
7 | + | |
8 | +[Version Info Keys] | |
9 | +FileVersion=1.0.0.0 | |
10 | +ProductVersion={today} | |
11 | +FileDescription=DprojFilter | |
12 | +OriginalFilename=DprojFilter.exe | |
13 | +Comments= | |
14 | +CompanyName=dummzeuch.de | |
15 | +InternalName=DprojFilter | |
16 | +LegalCopyright=Thomas Mueller, 2018-{ThisYear} | |
17 | +LegalTrademarks=T. Mueller | |
18 | +ProductName=DprojFilter |