Click here to Skip to main content
15,867,686 members
Articles / Programming Languages / Visual C++ 9.0
Alternative
Article

regsvr42: Generate SxS Manifest Files from Native DLLs for Registration-Free COM

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
17 Jun 2012CPOL 20.2K   6   2
This is an alternative for "regsvr42: Generate SxS Manifest Files from Native DLLs for Registration-Free COM"
XML
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
      <requestedPrivileges>
        <requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
      </requestedPrivileges>
    </security>
  </trustInfo>
  <dependency>
    <dependentAssembly>
      <assemblyIdentity type="win32" name="Microsoft.VC90.CRT" version="9.0.21022.8" 
            processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
    </dependentAssembly>
  </dependency>
</assembly>

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWhere's the article ? Pin
Alexandre GRANVAUD17-Jun-12 20:59
Alexandre GRANVAUD17-Jun-12 20:59 
AnswerRe: Where's the article ? Pin
Cristian Adam17-Jun-12 22:46
Cristian Adam17-Jun-12 22:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.