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. C#
  4. Where are the libraries located in C#?

Where are the libraries located in C#?

Scheduled Pinned Locked Moved C#
csharptutorialquestion
27 Posts 5 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.
  • L Luc Pattyn

    There is a menu item that says either “add ...” or “add reference”, it may be a context menu for your project in the “solution pane”. Look around and you will find it. :)

    Luc Pattyn [My Articles] Nil Volentibus Arduum

    B Offline
    B Offline
    Brian_TheLion
    wrote on last edited by
    #15

    I think I found it as Reference Manager. I have a choice of Solution under Projects or Solution under Shared Projects to browse for the dll file.There is also 'Browse recent' but I don't think that's the right one to use. Brian

    L 1 Reply Last reply
    0
    • B Brian_TheLion

      Hopefully this time I appear as BrianTheLion Brian

      C Offline
      C Offline
      CHill60
      wrote on last edited by
      #16

      At the moment it says "Brain" instead of "Brian" … but that's quite cool :)

      OriginalGriffO B 3 Replies Last reply
      0
      • C CHill60

        At the moment it says "Brain" instead of "Brian" … but that's quite cool :)

        OriginalGriffO Offline
        OriginalGriffO Offline
        OriginalGriff
        wrote on last edited by
        #17

        CHill60 wrote:

        that's quite cool animal cruelty

        FTFY!

        Sent from my Amstrad PC 1640 Never throw anything away, Griff Bad command or file name. Bad, bad command! Sit! Stay! Staaaay... AntiTwitter: @DalekDave is now a follower!

        "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
        "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

        C 1 Reply Last reply
        0
        • C CHill60

          At the moment it says "Brain" instead of "Brian" … but that's quite cool :)

          B Offline
          B Offline
          Brian_TheLion
          wrote on last edited by
          #18

          Opps I see what you mean. It won't let me change to BrianTheLion (says it's taken) so BriainTheLion well have to do.

          1 Reply Last reply
          0
          • B Brian_TheLion

            I think I found it as Reference Manager. I have a choice of Solution under Projects or Solution under Shared Projects to browse for the dll file.There is also 'Browse recent' but I don't think that's the right one to use. Brian

            L Offline
            L Offline
            Luc Pattyn
            wrote on last edited by
            #19

            The details vary for different versions of Visual Studio. The dialog you want is called "Add Reference" in VS2008, and "Reference Manager" in VS2015, I don't know for other versions (VS2019 has been made available just now). And I never used the "shared projects" feature. :)

            Luc Pattyn [My Articles] Nil Volentibus Arduum

            B 1 Reply Last reply
            0
            • C CHill60

              At the moment it says "Brain" instead of "Brian" … but that's quite cool :)

              B Offline
              B Offline
              Brian_TheLion
              wrote on last edited by
              #20

              It should be BrianTheLoin. It may have picked up Brain from my computer. When the tech installed the operating system he typed in Brain instead of Brian by mistake. Brian

              OriginalGriffO 1 Reply Last reply
              0
              • OriginalGriffO OriginalGriff

                CHill60 wrote:

                that's quite cool animal cruelty

                FTFY!

                Sent from my Amstrad PC 1640 Never throw anything away, Griff Bad command or file name. Bad, bad command! Sit! Stay! Staaaay... AntiTwitter: @DalekDave is now a follower!

                C Offline
                C Offline
                CHill60
                wrote on last edited by
                #21

                :laugh:

                1 Reply Last reply
                0
                • B Brian_TheLion

                  It should be BrianTheLoin. It may have picked up Brain from my computer. When the tech installed the operating system he typed in Brain instead of Brian by mistake. Brian

                  OriginalGriffO Offline
                  OriginalGriffO Offline
                  OriginalGriff
                  wrote on last edited by
                  #22

                  And now you have BriainTheLion! :laugh:

                  Sent from my Amstrad PC 1640 Never throw anything away, Griff Bad command or file name. Bad, bad command! Sit! Stay! Staaaay... AntiTwitter: @DalekDave is now a follower!

                  "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
                  "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

                  1 Reply Last reply
                  0
                  • B Brian_TheLion

                    Hi Eddy. I just want to use some of the classes within Engine3.dll in a new project. So I need to copy Engine.dll from my old project over to my new project but don't know where the destination is to put Engine3.dll Brian

                    L Offline
                    L Offline
                    Lost User
                    wrote on last edited by
                    #23

                    The assembly would need to become part of the project; easiest way to do so is to create a "bin" folder (or similar) and drop them all there, with "Copy to target" to true. When building, the assemblies would be copied to the build-folder.

                    Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

                    B 1 Reply Last reply
                    0
                    • L Lost User

                      The assembly would need to become part of the project; easiest way to do so is to create a "bin" folder (or similar) and drop them all there, with "Copy to target" to true. When building, the assemblies would be copied to the build-folder.

                      Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

                      B Offline
                      B Offline
                      Brian_TheLion
                      wrote on last edited by
                      #24

                      Thanks Eddy, I'll keep that in mind. Brian

                      L 1 Reply Last reply
                      0
                      • L Luc Pattyn

                        The details vary for different versions of Visual Studio. The dialog you want is called "Add Reference" in VS2008, and "Reference Manager" in VS2015, I don't know for other versions (VS2019 has been made available just now). And I never used the "shared projects" feature. :)

                        Luc Pattyn [My Articles] Nil Volentibus Arduum

                        B Offline
                        B Offline
                        Brian_TheLion
                        wrote on last edited by
                        #25

                        Hi Luc. I'm using the 2015 version of Visual Studio. Do you know if it's still possible to download the 2015 version should something happen to my 2015 version of Visual Studio? I'm told that there are errors in latest version of Visual Studio. Brian

                        L 1 Reply Last reply
                        0
                        • B Brian_TheLion

                          Thanks Eddy, I'll keep that in mind. Brian

                          L Offline
                          L Offline
                          Lost User
                          wrote on last edited by
                          #26

                          You're welcome :)

                          Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^] "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

                          1 Reply Last reply
                          0
                          • B Brian_TheLion

                            Hi Luc. I'm using the 2015 version of Visual Studio. Do you know if it's still possible to download the 2015 version should something happen to my 2015 version of Visual Studio? I'm told that there are errors in latest version of Visual Studio. Brian

                            L Offline
                            L Offline
                            Luc Pattyn
                            wrote on last edited by
                            #27

                            Found this archive[^]. :)

                            Luc Pattyn [My Articles] Nil Volentibus Arduum

                            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