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. The Lounge
  3. Visual studio extensions - productivity power tools

Visual studio extensions - productivity power tools

Scheduled Pinned Locked Moved The Lounge
toolscsharpvisual-studiocomlounge
31 Posts 19 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.
  • A Abhinav S

    Dont know if anything about this[^] was ever posted here. But some of these Productivity Power tools are nice. I just discovered them now (thanks to Venkatesh Mookkan).

    The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it. My latest tip/trick Visit the Hindi forum here.

    M Offline
    M Offline
    Member 96
    wrote on last edited by
    #17

    Other than the whole thread about vs extensions last week? ;)


    “If you want to build a ship, don't drum up people together to collect wood and don't assign them tasks and work, but rather teach them to long for the endless immensity of the sea” - Antoine de Saint-Exupery

    1 Reply Last reply
    0
    • N Nish Nishant

      My biggest concern with add-ins and extensions for Visual Studio is how they somehow make the app a little slower and a tad more unstable. I do install some add-ins because the advantages they offer outweigh the loss in speed and stability. But the power tools, I'll probably skip - even though that searchable references dialog looks very enticing.

      Regards, Nish


      My technology blog: voidnish.wordpress.com Code Project Forums : New Posts Monitor This application monitors for new posts in the Code Project forums.

      A Offline
      A Offline
      Anna Jayne Metcalfe
      wrote on last edited by
      #18

      Nishant Sivakumar wrote:

      My biggest concern with add-ins and extensions for Visual Studio is how they somehow make the app a little slower and a tad more unstable.

      By definition you should only get a performance impact from extensions that respond to events - those which are passive (i.e. completely command invoked) shouldn't affect it at all. The actual impact depends on that they do, which interfaces they use, how they are written and which language they're implemented in (like it or not, this is one of those areas where managed code carries an overhead you could well do without). Stability depends on the skill/competance of the developers (both of the extension and the IDE - extensions use internal interfaces MS don't test as thoroughly as the external UI, and which can break unpredictably between versions) and level of testing. The right mix for a given developer is a very personal thing - and for some "none" is almost certainly the right choice. I still can't understand how any VS developer can live without Visual Assist though. :rose:

      Anna :rose: Tech Blog | Visual Lint "Why would anyone prefer to wield a weapon that takes both hands at once, when they could use a lighter (and obviously superior) weapon that allows you to wield multiple ones at a time, and thus supports multi-paradigm carnage?"

      2 D 2 Replies Last reply
      0
      • A Anna Jayne Metcalfe

        Nishant Sivakumar wrote:

        My biggest concern with add-ins and extensions for Visual Studio is how they somehow make the app a little slower and a tad more unstable.

        By definition you should only get a performance impact from extensions that respond to events - those which are passive (i.e. completely command invoked) shouldn't affect it at all. The actual impact depends on that they do, which interfaces they use, how they are written and which language they're implemented in (like it or not, this is one of those areas where managed code carries an overhead you could well do without). Stability depends on the skill/competance of the developers (both of the extension and the IDE - extensions use internal interfaces MS don't test as thoroughly as the external UI, and which can break unpredictably between versions) and level of testing. The right mix for a given developer is a very personal thing - and for some "none" is almost certainly the right choice. I still can't understand how any VS developer can live without Visual Assist though. :rose:

        Anna :rose: Tech Blog | Visual Lint "Why would anyone prefer to wield a weapon that takes both hands at once, when they could use a lighter (and obviously superior) weapon that allows you to wield multiple ones at a time, and thus supports multi-paradigm carnage?"

        2 Offline
        2 Offline
        240DL
        wrote on last edited by
        #19

        I'm with you on the Visual Assist thing. Since I've been using it, I do so much less typing than I used to in order to get more coding done. ... And it works with C++ (my primary language) and not just C# and VB.

        A 1 Reply Last reply
        0
        • 2 240DL

          I'm with you on the Visual Assist thing. Since I've been using it, I do so much less typing than I used to in order to get more coding done. ... And it works with C++ (my primary language) and not just C# and VB.

          A Offline
          A Offline
          Anna Jayne Metcalfe
          wrote on last edited by
          #20

          I'm still amazed there are developers (and particularly C++ developers) who don't use it. :omg: VSFileFinder, vs-build-timer, IncrediBuild and IncludeManager are the other ones I have loaded all of the time, along with ResOrg and Visual Lint when I'm not actively working on them (running and developing the same add-in at the same time is kinda messy!).

          Anna :rose: Tech Blog | Visual Lint "Why would anyone prefer to wield a weapon that takes both hands at once, when they could use a lighter (and obviously superior) weapon that allows you to wield multiple ones at a time, and thus supports multi-paradigm carnage?"

          1 Reply Last reply
          0
          • A Abhinav S

            Dont know if anything about this[^] was ever posted here. But some of these Productivity Power tools are nice. I just discovered them now (thanks to Venkatesh Mookkan).

            The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it. My latest tip/trick Visit the Hindi forum here.

            N Offline
            N Offline
            Not Active
            wrote on last edited by
            #21

            I've found some of them to be very useful, but others of course not so much. The auto-complete for braces and quoates and such gets annoying sometimes.


            I know the language. I've read a book. - _Madmatt

            1 Reply Last reply
            0
            • A Abhinav S

              Dont know if anything about this[^] was ever posted here. But some of these Productivity Power tools are nice. I just discovered them now (thanks to Venkatesh Mookkan).

              The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it. My latest tip/trick Visit the Hindi forum here.

              K Offline
              K Offline
              Kenneth Kasajian
              wrote on last edited by
              #22

              If they have an add-in that will start my IDE faster, I'm there.

              ken@kasajian.com / www.kasajian.com

              1 Reply Last reply
              0
              • A Anna Jayne Metcalfe

                Nishant Sivakumar wrote:

                My biggest concern with add-ins and extensions for Visual Studio is how they somehow make the app a little slower and a tad more unstable.

                By definition you should only get a performance impact from extensions that respond to events - those which are passive (i.e. completely command invoked) shouldn't affect it at all. The actual impact depends on that they do, which interfaces they use, how they are written and which language they're implemented in (like it or not, this is one of those areas where managed code carries an overhead you could well do without). Stability depends on the skill/competance of the developers (both of the extension and the IDE - extensions use internal interfaces MS don't test as thoroughly as the external UI, and which can break unpredictably between versions) and level of testing. The right mix for a given developer is a very personal thing - and for some "none" is almost certainly the right choice. I still can't understand how any VS developer can live without Visual Assist though. :rose:

                Anna :rose: Tech Blog | Visual Lint "Why would anyone prefer to wield a weapon that takes both hands at once, when they could use a lighter (and obviously superior) weapon that allows you to wield multiple ones at a time, and thus supports multi-paradigm carnage?"

                D Offline
                D Offline
                Dan Neely
                wrote on last edited by
                #23

                Too expensive to buy out of pocket and work won't....

                3x12=36 2x12=24 1x12=12 0x12=18

                A 1 Reply Last reply
                0
                • D Dan Neely

                  Too expensive to buy out of pocket and work won't....

                  3x12=36 2x12=24 1x12=12 0x12=18

                  A Offline
                  A Offline
                  Anna Jayne Metcalfe
                  wrote on last edited by
                  #24

                  If they can't work out that sometimes spending a little capital (and let's face it, it ain't a lot) is worth it to increase the productivity of their key people, it doesn't sound like they are particularly astute at managing their business.

                  Anna :rose: Tech Blog | Visual Lint "Why would anyone prefer to wield a weapon that takes both hands at once, when they could use a lighter (and obviously superior) weapon that allows you to wield multiple ones at a time, and thus supports multi-paradigm carnage?"

                  D 1 Reply Last reply
                  0
                  • A Anna Jayne Metcalfe

                    If they can't work out that sometimes spending a little capital (and let's face it, it ain't a lot) is worth it to increase the productivity of their key people, it doesn't sound like they are particularly astute at managing their business.

                    Anna :rose: Tech Blog | Visual Lint "Why would anyone prefer to wield a weapon that takes both hands at once, when they could use a lighter (and obviously superior) weapon that allows you to wield multiple ones at a time, and thus supports multi-paradigm carnage?"

                    D Offline
                    D Offline
                    Dan Neely
                    wrote on last edited by
                    #25

                    Beancounter is an overly long four letter word. Edit, and so is Process. It's not standard software so IT won't buy it, and I'd need to start a process that would likely consume several hundred dollars of time to try and get it bought out of someone elses overhead budget. Having spent several months doing that to get a $60 ergonomic mouse (I'm a lefty and the only one on the market was a 10 button cordless mouse that someone kept balking at as being too expensive) I have no desire to waste my time on it again.

                    3x12=36 2x12=24 1x12=12 0x12=18

                    S A 2 Replies Last reply
                    0
                    • A Abhinav S

                      I agree - they do make VS2010 a little slower. Their solution navigator (with the search) is very neat and the best feature. BTW, who can complain about colored file tabs (based on the project the file belongs too). :)

                      The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it. My latest tip/trick Visit the Hindi forum here.

                      J Offline
                      J Offline
                      jpeterson
                      wrote on last edited by
                      #26

                      Abhinav S wrote:

                      BTW, who can complain about colored file tabs (based on the project the file belongs too).

                      The colored tabs are sweet. Does anyone know if they can be applied to SSMS? I recall the SSMS team saying something about their tabs were pulled from Visual Studio, and so they couldn't fix all the issues they have with them. Makes me wonder if there are some registry hacks somewhere to re-use the goodness.

                      1 Reply Last reply
                      0
                      • D Dan Neely

                        Beancounter is an overly long four letter word. Edit, and so is Process. It's not standard software so IT won't buy it, and I'd need to start a process that would likely consume several hundred dollars of time to try and get it bought out of someone elses overhead budget. Having spent several months doing that to get a $60 ergonomic mouse (I'm a lefty and the only one on the market was a 10 button cordless mouse that someone kept balking at as being too expensive) I have no desire to waste my time on it again.

                        3x12=36 2x12=24 1x12=12 0x12=18

                        S Offline
                        S Offline
                        Stefan_Lang
                        wrote on last edited by
                        #27

                        It took me all of 5 minutes of demonstration to convince my coworkers and my boss to buy VisualAssist! Do get the trial, get used to it for a week, then uninstall it and see how much you miss it. It is worth every length of process you have to go through to get it. And, honestly, if I hadn't managed to convince my boss I would have strongly considered to buy it privately, just to make my work less tedious!

                        D 1 Reply Last reply
                        0
                        • A Abhinav S

                          Dont know if anything about this[^] was ever posted here. But some of these Productivity Power tools are nice. I just discovered them now (thanks to Venkatesh Mookkan).

                          The funniest thing about this particular signature is that by the time you realise it doesn't say anything it's too late to stop reading it. My latest tip/trick Visit the Hindi forum here.

                          S Offline
                          S Offline
                          Stefan_Lang
                          wrote on last edited by
                          #28

                          What I really do not understand is that some guys at Microsoft do see how clunky and unwieldy the VS IDE still is, and yet they didn't build this stuff into the IDE right away!? Why? If it's good why not integrate it? If it's bad, why even bother develop this stuff? I have the strong suspicion MS is using developers as beta testers. Using the AddOn platform means they won't have to disentangle new bugs from VS problems, and won't need to tie patches and updates to fixes required for these tools. I wouldn't know any other reason.

                          modified on Friday, October 15, 2010 10:30 AM

                          1 Reply Last reply
                          0
                          • D Dan Neely

                            Beancounter is an overly long four letter word. Edit, and so is Process. It's not standard software so IT won't buy it, and I'd need to start a process that would likely consume several hundred dollars of time to try and get it bought out of someone elses overhead budget. Having spent several months doing that to get a $60 ergonomic mouse (I'm a lefty and the only one on the market was a 10 button cordless mouse that someone kept balking at as being too expensive) I have no desire to waste my time on it again.

                            3x12=36 2x12=24 1x12=12 0x12=18

                            A Offline
                            A Offline
                            Anna Jayne Metcalfe
                            wrote on last edited by
                            #29

                            My sympathies - I suspect most of us have encountered organisations like that. :rose: If it helps, I've always found that talking to the right people using the right language can counteract the natural tendency of such organsisations to pull their jumper over their head and go "la-la-la" when anyone suggests they do anything out of the ordinary. But then I am a bit of a self-confessed troublemaker. It does seem to work most of the time though! :rolleyes:

                            Anna :rose: Tech Blog | Visual Lint "Why would anyone prefer to wield a weapon that takes both hands at once, when they could use a lighter (and obviously superior) weapon that allows you to wield multiple ones at a time, and thus supports multi-paradigm carnage?"

                            1 Reply Last reply
                            0
                            • S Stefan_Lang

                              It took me all of 5 minutes of demonstration to convince my coworkers and my boss to buy VisualAssist! Do get the trial, get used to it for a week, then uninstall it and see how much you miss it. It is worth every length of process you have to go through to get it. And, honestly, if I hadn't managed to convince my boss I would have strongly considered to buy it privately, just to make my work less tedious!

                              D Offline
                              D Offline
                              Dan Neely
                              wrote on last edited by
                              #30

                              $250 is well above what I'm willing to pay out of pocket for something I'd only really use at work. Running a personal edition at work isn't going to fly with the PHB's even if it's kosher with the company waging burrocratic war isn't my idea of fun.

                              3x12=36 2x12=24 1x12=12 0x12=18

                              1 Reply Last reply
                              0
                              • N Nemanja Trifunovic

                                This one[^] has some potential of being useful when more features get implemented.

                                utf8-cpp

                                S Offline
                                S Offline
                                Sylaei_Me
                                wrote on last edited by
                                #31

                                VsVim is awesome. I am just coming back to vi/vim and trying to remember all that I once knew. I am in the process of getting everyone to upgrade to VS2010 at work so I can use this extension. :-D

                                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