Is there an issues plugin for github/visual studio? [closed] - visual-studio

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Is there a plugin that will show my github issues in visual studio?
Would be pretty cool to be able to see all that info inside the IDE

I don't know of any plugin offering a direct integration with GitHub bug tracker.
The Git Extensions don't include that feature (and there are one of the advanced plugin to integrate Git - not GitHub, just Git - within Visual Studio).
Maybe another soution would be to get some kind of integration with another bug tracking which then would be able to read from/write to the GitHub issue tracker.
This SO question, for instance, mentioned LightHouse (which isn't a good fit in your case, since it is not integrated with Visual Studio).

Related

continuous integration tool for VS-built c# project [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
We need to setup a continuous integration infrastructure for a C# project. None of us has anything other than a very few user-side experience with these tools at all.
Our requirements would be:
we need a tool which runs on windows, because we want our project to be csc-built. Building with mono is not an option.
we use an SVN server and it's on linux, it needs to be able to get the source from that.
Could anyone of you more experienced collagues recommend a tool like that? :) Thanks in advance!
CruiseControl is a good choice. Have a look here: http://cruisecontrol.sourceforge.net/

reactiveui samples [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm really amazed with reactive extensions library created by Microsoft and the MVVM framework 'reactiveui' build on top of it. I would love to use it in my project, but I cannot find any examples of using it in standard applications. I've seen Paul's (creator) blog posts, but what I need is not samples of codes, but sample application.
I want to build windows phone7/ windows 8 application with Reactive-UI, but I would like to know how to exactly use it in the there (not dry 3lines of usage example).
Please let me know if you know any open source examples, where Reactive-UI has been used.
You can check this GitHub repo
In the ReactiveUI.Sample.WP7 folder you can find the Sample application.

Private version control without server [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
My network configuration doesn't allow the computer to run as a server, so Subversion and others are out. Github offers non-public version controlling only for paying customers.
Anybody knows a solution where a few developers can work on the same code, for free, without sharing it with the whole world. Even merging directories between pendrives would do, if such software exists.
I think you're confusing Git with GitHub.
Git can do all you want, for free.
BitBucket does private repositories for up to 5 developers. BitBucket does Git or Mercurial, take your pick.

How do I replace the merge tool in Visual Studio/TFS 2010 [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Please, someone tell me that there is some way to replace the Merge Tool in TFS. I've already swapped out their diff tool with my preferred tool.
Yes, it's "easy". See this list of common diff/merge tool configurations.
(You can even use merge tools that work!)
You can use BeyondCompare or Araxis Merge for code comparison and merging. Both are paid commercial applications, but integrate well with Visual Studio environment.

Mercurial or Git [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 12 years ago.
Hello
I need a good SCM with integration in Visual Studio 2010 and ability to work over internet, I mean other users should be able to checkin/checkout files through internet/network.
I saw Git and its Extensions but I had problem with VS Integration. Its toolbar buttons and menu items didn't respond to my clicks, it just did nothing. I tried reinstalling it several times but without success. If you have a solution on this issue, please let me know.
Also a big advantage would be to use that SCM with my Qt projects, Qt Creator supports both mercurial and git.
So what would suggest? which one should I choose?
I would strongly suggest git.
Git is by far the more popular of the two so if you're looking to get people interested in collaborating on an open source project git is an attractive selling point. I've also worked with mercurial and subversion repositories and I've found git to be easiest to use and mercurial the most difficult.
Also, if you're looking to setup a free git repository you should go to github.com. For mercurial try code.google.com .
Hope my opinion helps, good luck!

Resources