GitHub Extension for Visual Studio
Перейти к файлу
Steven Kirk 177bca71c0 Merge branch 'master' into fixes/809-refactor-logins 2017-03-23 15:49:19 +01:00
.ncrunch Merge branch 'master' into fixes/809-refactor-logins 2017-03-08 11:22:56 +01:00
documentation Updated test manifest. 2017-02-28 18:34:49 +01:00
lib Use new clone API in VS2017. 2017-02-07 14:10:02 +01:00
script@f60ae9876a Updated script submodule. 2017-03-08 11:52:52 +01:00
scripts Fix test reporting on AppVeyor 2016-07-25 15:50:15 +02:00
src Merge branch 'master' into fixes/809-refactor-logins 2017-03-23 15:49:19 +01:00
submodules Give GitHubVSAutomationIDs a unique project guid 2017-03-22 12:13:35 +00:00
tools/VsixUtil Add update script to reinstall extension 2017-02-28 14:39:06 +00:00
.editorconfig added .editorconfig to help prevent wrong indent types 2016-10-28 14:38:16 +01:00
.gitattributes Let's get this party started! 2014-12-12 10:15:45 -08:00
.gitignore Merge branch 'master' into grokys/ncrunch 2017-01-27 17:50:27 +01:00
.gitmodules remove wrong submodule names 2017-02-17 18:44:54 -05:00
Build-Solution.cmd Get everything building on the command line 2015-01-19 18:42:04 -08:00
Build-Solution.ps1 Get a ps script going for doing public builds 2015-12-18 14:10:38 +00:00
CONTRIBUTING.md Make project title Italic to draw focus. 2016-11-21 12:29:50 +00:00
GitHubVS.sln update submodule repo name 2017-02-17 17:40:30 -05:00
GitHubVS.v3.ncrunchsolution Moved NCrunch project files to .ncrunch directory. 2017-02-28 12:36:46 +01:00
ISSUE_TEMPLATE.md Fix typo and drop formatting 2016-11-20 17:44:10 +00:00
LICENSE.md Merge pull request #862 from Phineas/patch-1 2017-02-16 02:31:06 +01:00
README.md Merge branch 'master' into fixes/809-refactor-logins 2017-03-08 11:22:56 +01:00
appveyor.yml Revert "Add GitHub.VisualStudio.vsix to appveyor artifacts" 2017-03-06 12:57:21 -08:00
build.cmd Add IsProductComponent/IsExperimental properties 2017-03-02 09:43:26 +00:00
deploy-local.cmd Fix vsix signing (bump script submodule) 2016-01-19 18:15:33 +01:00
deploy.cmd Quick helper script for creating a local release build 2015-05-12 00:47:26 +02:00
install.cmd Add IsProductComponent/IsExperimental properties 2017-03-02 09:43:26 +00:00
nuget.config Add nuget config to solution folder 2015-03-12 20:58:41 -07:00
test.cmd Add `test.cmd` to run unit tests 2017-02-28 14:39:09 +00:00

README.md

GitHub Extension for Visual Studio

The location of the submodules has changed as of 31-01-2017. If you have an existing clone, make sure to run git submodule sync to update your local clone with the new locations for the submodules.

The GitHub Extension for Visual Studio provides GitHub integration in Visual Studio 2015. Most of the extension UI lives in the Team Explorer pane, which is available from the View menu.

Official builds of this extension are available at the official website.

Join the chat at freenode:github-vs Join the chat at https://gitter.im/github/VisualStudio

Installing beta versions

Older and pre-release/beta/untested versions are available at the releases page, and also via a custom gallery feed for Visual Studio.

You can configure the gallery by going to Tools / Options / Extensions and Updates and adding a new gallery with the url https://visualstudio.github.com/releases/feed.rss. The gallery will now be available from Tools / Extensions and Updates.

Beta releases will have (beta) in their title in the gallery, following the version number. You can view the release notes in the gallery by hovering over the description, or by clicking the Release Notes link on the right side.

Build requirements

  • Visual Studio 2015
  • Visual Studio SDK

Build

Clone the repository and its submodules in a git GUI client or via the command line:

git clone https://github.com/github/VisualStudio
cd VisualStudio
git submodule init
git submodule deinit script
git submodule update

Open the GitHubVS.sln solution with Visual Studio 2015. To be able to use the GitHub API, you'll need to:

Build using Visual Studio 2015 or:

build.cmd

Install in live (non-Experimental) instances of Visual Studio 2015 and 2017:

install.cmd

Note, the script will only install in one instance of Visual Studio 2017 (Enterprise, Professional or Community).

Build Flavors

By default, building will create a VSIX with Experimental="true" and AllUsers="false" in its extension.vsixmanifest. These settings are necessary in order to easily install a standalone VSIX file. There is no need to uninstall the version previously installed via Visual Studio setup / Extensions and Updates.

The following can be executed via cmd.exe.

To build and install a Debug configuration VSIX:

build.cmd
install.cmd

To build and install a Release configuration VSIX:

set Configuration=Release
build.cmd
install.cmd

To build a VSIX that can be installed via a gallery feed on Extensions and Updates:

set Configuration=Release
set IsExperimental=false
build.cmd

Note, attempting to install IsExperimental=false builds of the VSIX is not recommended.

More information

  • Andreia Gaita's presentation at Codemania 2016 about this extension.

Contributing

Visit the Contributor Guidelines for details on how to contribute as well as the Open Code of Conduct for details on how to participate.

Copyright 2015 - 2017 GitHub, Inc.

Licensed under the MIT License