Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.3 KiB

  1. /*
  2. This is an odd use of Sxs. See the sources file for more comments.
  3. Setup itself does not need Sxs, but it registers stuff inproc that needs gdiplus.dll,
  4. and the system compatible activation context is created after setup.exe starts.
  5. */
  6. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  7. <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  8. <assemblyIdentity
  9. name=SXS_ASSEMBLY_NAME
  10. version=SXS_ASSEMBLY_VERSION
  11. processorArchitecture=SXS_PROCESSOR_ARCHITECTURE
  12. type="win32"
  13. />
  14. <description>Microsoft Windows Setup</description>
  15. <dependency>
  16. <dependentAssembly>
  17. <assemblyIdentity
  18. type="win32"
  19. name="Microsoft.Windows.Common-Controls"
  20. version="6.0.0.0"
  21. publicKeyToken="6595b64144ccf1df"
  22. language="*"
  23. processorArchitecture=SXS_PROCESSOR_ARCHITECTURE
  24. />
  25. </dependentAssembly>
  26. </dependency>
  27. <dependency>
  28. <dependentAssembly>
  29. <assemblyIdentity
  30. type="win32"
  31. name="Microsoft.Windows.GdiPlus"
  32. version="1.0.0.0"
  33. publicKeyToken="6595b64144ccf1df"
  34. language="*"
  35. processorArchitecture=SXS_PROCESSOR_ARCHITECTURE
  36. />
  37. </dependentAssembly>
  38. </dependency>
  39. </assembly>