Menu

Tree [8b06c1] main /
 History

HTTPS access


File Date Author Commit
 Properties 2021-08-03 Akshay Padghan Akshay Padghan [4d0c97] Add files via upload
 CAssemblyRegistrationTool.csproj 2021-08-03 Akshay Padghan Akshay Padghan [422e36] Add files via upload
 CAssemblyRegistrationTool.csproj.user 2021-08-03 Akshay Padghan Akshay Padghan [422e36] Add files via upload
 CAssemblyRegistrationTool.sln 2021-08-03 Akshay Padghan Akshay Padghan [422e36] Add files via upload
 Program.cs 2021-08-03 Akshay Padghan Akshay Padghan [422e36] Add files via upload
 README.md 2021-08-03 Akshay Padghan Akshay Padghan [8b06c1] Create README.md

Read Me

CAssemblyRegistrationTool

This software use to register C# Class same as regasm.exe

If you want to use this using cpp use follwing code.

//-----------------------------------------------------------------------------
void OpenExe(LPCTSTR lpApplicationName, const std::wstring& command)
{
// additional information
STARTUPINFO si;
PROCESS_INFORMATION pi;

// set the size of the structures
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
LPWSTR pCommand = const_cast<LPWSTR>(command.c_str());
// start the program up
CreateProcess( lpApplicationName,   // the path
    pCommand,        // Command line
    NULL,           // Process handle not inheritable
    NULL,           // Thread handle not inheritable
    FALSE,          // Set handle inheritance to FALSE
    0,              // No creation flags
    NULL,           // Use parent's environment block
    NULL,           // Use parent's starting directory 
    &si,            // Pointer to STARTUPINFO structure
    &pi             // Pointer to PROCESS_INFORMATION structure (removed extra parentheses)
    );
// Close process and thread handles. 
CloseHandle( pi.hProcess );
CloseHandle( pi.hThread );

}

OpenExe(L"Full path of CAssemblyRegistrationTool.exe", L"Full path of assembly file like As.dll");

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.