Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. .NET (Core and Framework)
  4. .NET Framework assembly Registry Entries

.NET Framework assembly Registry Entries

Scheduled Pinned Locked Moved .NET (Core and Framework)
csharpdotnetwindows-admin
6 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D Offline
    D Offline
    Derek Tortonian
    wrote on last edited by
    #1

    Nevermind

    D P 2 Replies Last reply
    0
    • D Derek Tortonian

      Nevermind

      D Offline
      D Offline
      Dave Kreskowiak
      wrote on last edited by
      #2

      Easy, there aren't any.

      A guide to posting questions on CodeProject

      Click this: Asking questions is a skill. Seriously, do it.
      Dave Kreskowiak

      D 1 Reply Last reply
      0
      • D Dave Kreskowiak

        Easy, there aren't any.

        A guide to posting questions on CodeProject

        Click this: Asking questions is a skill. Seriously, do it.
        Dave Kreskowiak

        D Offline
        D Offline
        Derek Tortonian
        wrote on last edited by
        #3

        Well, I did a lot more searching for this information. Ironically, I found an excellent article right here at CodeProject, that describes the necessary registry entries for a .NET Framework assembly. Building COM Servers in .NET, Lim Bio Liong, 2006 The information is buried way down towards the end of the article. It looks like this:

        [HKEY_CLASSES_ROOT\ManagedCOMLocalServer_Impl01.SimpleCOMObject]
        @="ManagedCOMLocalServer_Impl01.SimpleCOMObject"

        [HKEY_CLASSES_ROOT\ManagedCOMLocalServer_Impl01.SimpleCOMObject\CLSID]
        @="{E1FE1223-45C2-4872-9B1E-634FB850E753}"

        [HKEY_CLASSES_ROOT\CLSID\{E1FE1223-45C2-4872-9B1E-634FB850E753}]
        @="ManagedCOMLocalServer_Impl01.SimpleCOMObject"

        [HKEY_CLASSES_ROOT\CLSID\{E1FE1223-45C2-4872-9B1E-634FB850E753}
        \InprocServer32]
        @="mscoree.dll"
        "ThreadingModel"="Both"
        "Class"="ManagedCOMLocalServer_Impl01.SimpleCOMObject"
        "Assembly"="ManagedCOMLocalServer_Impl01, Version=1.0.0.0, Culture=neutral,
        PublicKeyToken=94ff3289282b08f3"
        "RuntimeVersion"="v1.1.4322"

        [HKEY_CLASSES_ROOT\CLSID\{E1FE1223-45C2-4872-9B1E-634FB850E753}
        \InprocServer32\1.0.0.0]
        "Class"="ManagedCOMLocalServer_Impl01.SimpleCOMObject"
        "Assembly"="ManagedCOMLocalServer_Impl01, Version=1.0.0.0, Culture=neutral,
        PublicKeyToken=94ff3289282b08f3"
        "RuntimeVersion"="v1.1.4322"

        [HKEY_CLASSES_ROOT\CLSID\{E1FE1223-45C2-4872-9B1E-634FB850E753}\ProgId]
        @="ManagedCOMLocalServer_Impl01.SimpleCOMObject"

        [HKEY_CLASSES_ROOT\CLSID\{E1FE1223-45C2-4872-9B1E-634FB850E753}
        \Implemented Categories\{62C8FE65-4EBB-45E7-B440-6E39B2CDBF29}]

        D 1 Reply Last reply
        0
        • D Derek Tortonian

          Well, I did a lot more searching for this information. Ironically, I found an excellent article right here at CodeProject, that describes the necessary registry entries for a .NET Framework assembly. Building COM Servers in .NET, Lim Bio Liong, 2006 The information is buried way down towards the end of the article. It looks like this:

          [HKEY_CLASSES_ROOT\ManagedCOMLocalServer_Impl01.SimpleCOMObject]
          @="ManagedCOMLocalServer_Impl01.SimpleCOMObject"

          [HKEY_CLASSES_ROOT\ManagedCOMLocalServer_Impl01.SimpleCOMObject\CLSID]
          @="{E1FE1223-45C2-4872-9B1E-634FB850E753}"

          [HKEY_CLASSES_ROOT\CLSID\{E1FE1223-45C2-4872-9B1E-634FB850E753}]
          @="ManagedCOMLocalServer_Impl01.SimpleCOMObject"

          [HKEY_CLASSES_ROOT\CLSID\{E1FE1223-45C2-4872-9B1E-634FB850E753}
          \InprocServer32]
          @="mscoree.dll"
          "ThreadingModel"="Both"
          "Class"="ManagedCOMLocalServer_Impl01.SimpleCOMObject"
          "Assembly"="ManagedCOMLocalServer_Impl01, Version=1.0.0.0, Culture=neutral,
          PublicKeyToken=94ff3289282b08f3"
          "RuntimeVersion"="v1.1.4322"

          [HKEY_CLASSES_ROOT\CLSID\{E1FE1223-45C2-4872-9B1E-634FB850E753}
          \InprocServer32\1.0.0.0]
          "Class"="ManagedCOMLocalServer_Impl01.SimpleCOMObject"
          "Assembly"="ManagedCOMLocalServer_Impl01, Version=1.0.0.0, Culture=neutral,
          PublicKeyToken=94ff3289282b08f3"
          "RuntimeVersion"="v1.1.4322"

          [HKEY_CLASSES_ROOT\CLSID\{E1FE1223-45C2-4872-9B1E-634FB850E753}\ProgId]
          @="ManagedCOMLocalServer_Impl01.SimpleCOMObject"

          [HKEY_CLASSES_ROOT\CLSID\{E1FE1223-45C2-4872-9B1E-634FB850E753}
          \Implemented Categories\{62C8FE65-4EBB-45E7-B440-6E39B2CDBF29}]

          D Offline
          D Offline
          Dave Kreskowiak
          wrote on last edited by
          #4

          Good Luck! You're going to find that this doesn't hold true for all managed assemblies.

          A guide to posting questions on CodeProject

          Click this: Asking questions is a skill. Seriously, do it.
          Dave Kreskowiak

          D 1 Reply Last reply
          0
          • D Dave Kreskowiak

            Good Luck! You're going to find that this doesn't hold true for all managed assemblies.

            A guide to posting questions on CodeProject

            Click this: Asking questions is a skill. Seriously, do it.
            Dave Kreskowiak

            D Offline
            D Offline
            Derek Tortonian
            wrote on last edited by
            #5

            "You're going to find that this doesn't hold true for all managed assemblies." ...Yeah, Dave,...that was my assumption from day one,...but, by examining the results I get from using that information, and modifying it as necessary, I'll get a workable method. Why is the Registry a Hierarchical Database Instead of a Relational One?, Raymond Chen, 2011

            1 Reply Last reply
            0
            • D Derek Tortonian

              Nevermind

              P Offline
              P Offline
              palakimtss
              wrote on last edited by
              #6

              Distance Education is a good learning system for students which want to do study with job,courses provide like MBA,MCA and enginnering.

              1 Reply Last reply
              0
              Reply
              • Reply as topic
              Log in to reply
              • Oldest to Newest
              • Newest to Oldest
              • Most Votes


              • Login

              • Don't have an account? Register

              • Login or register to search.
              • First post
                Last post
              0
              • Categories
              • Recent
              • Tags
              • Popular
              • World
              • Users
              • Groups