puttygen.mft 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <!-- Do not attempt to do anything clever with this file, as some versions of
  3. Windows are very sensitive to the exact format.
  4. Hence, some facts below are fibs. -->
  5. <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  6. <assemblyIdentity
  7. version="0.0.0.0"
  8. processorArchitecture="*"
  9. name="PuTTYgen"
  10. type="win32" />
  11. <description>SSH key generator for PuTTY</description>
  12. <dependency>
  13. <dependentAssembly>
  14. <!-- Load Common Controls 6 instead of 5 to get WinXP native-
  15. looking controls in the client area. -->
  16. <assemblyIdentity type="win32"
  17. name="Microsoft.Windows.Common-Controls"
  18. version="6.0.0.0"
  19. publicKeyToken="6595b64144ccf1df"
  20. language="*"
  21. processorArchitecture="*"/>
  22. </dependentAssembly>
  23. </dependency>
  24. <!-- Declare us to be "DPI-aware". -->
  25. <asmv3:application xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
  26. <asmv3:windowsSettings
  27. xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
  28. <dpiAware>true</dpiAware>
  29. </asmv3:windowsSettings>
  30. </asmv3:application>
  31. </assembly>