From e0ef54043a72a4fe5fb826fc22ee7f776dd69856 Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 23 Jul 2024 04:09:01 +0900 Subject: [PATCH] Created REGASM (markdown) --- REGASM.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 REGASM.md diff --git a/REGASM.md b/REGASM.md new file mode 100644 index 0000000..3a37d19 --- /dev/null +++ b/REGASM.md @@ -0,0 +1,20 @@ +## REGASM for WelsonJS + +In general, the location of REGASM is as follows. + +``` +C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe +``` + +Or it may vary depending on the version. + +## How to register .NET COM/DLL component + +Example: + +``` +C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe /codebase WelsonJS.Toolkit.dll +C:\Windows\Microsoft.NET\Framework64\v2.0.50727\RegAsm.exe /codebase WelsonJS.Toolkit.dll +``` + +Thank you.