manifest file

Asked

Viewed 17 times

0

We have a legacy app written on VB6.

We are creating Dll resources/classes written in C# and would like to use the App.manifest file to "link" these resources/classes without registering via Regasm.exe as this would facilitate distribution.

Classes will be created initially in . Net Framework 3.5 (intended to facilitate distribution)

Or if it is simpler, we can build in . Net 5/6

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
    <!-- Main app -->
    <assemblyIdentity 
        name="App" 
        processorArchitecture="x86" 
        type="win32" 
        version="2.974.0.10" 
    />
    
    <!-- Identify the application security requirements. -->
    <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
        <security>
            <requestedPrivileges>
                <!-- level="asInvoker" -->
                <!-- level="requireAdministrator" -->
                <requestedExecutionLevel
                    level="requireAdministrator"
                    uiAccess="false"
                />   
            </requestedPrivileges>
        </security>
    </trustInfo>
</assembly>

Someone can help us?

Thank you.

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.