Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for Visual Studio 2019 Preview #2014

Merged
merged 7 commits into from Oct 26, 2018
Merged

Commits on Oct 25, 2018

  1. Add Microsoft.TeamFoundation.* 16.0 assemblies

    These are required for Visual Studio 2019 support.
    jcansdale committed Oct 25, 2018
  2. Pass IServiceProvider not IAsyncServiceProvider

    There are assemblies with exactly the same IAsyncServiceProvider
    namespace + name. Change to use IServiceProvider instead to avoid
    having to use assembly aliases. These were getting more complication
    with the introduction of Visual Studio 2019 support.
    jcansdale committed Oct 25, 2018

Commits on Oct 26, 2018

  1. Fix calling IGitActionsExt.CloneAsync from VS 2019

    The ServiceProgressData type is in a Visual Studio 2019 assembly that
    we don't currently have access to. Using reflection to call the
    CloneAsync in order to avoid conflicts with the Visual Studio 2017
    version. Progress won't be displayed on the status bar, but it appears
    prominently on the Team Explorer Home view.
    jcansdale committed Oct 26, 2018
  2. Add GitHub.TeamFoundation.16 project/asset

    Create a GitHub.TeamFoundation.16 project that will install and execute
    inside Visual Studio 2019.
    jcansdale committed Oct 26, 2018
  3. Merge branch 'master' into fixes/2010-vs2019-preview

    jcansdale committed Oct 26, 2018
  4. Use ITeamExplorerServices.OpenRepository

    Stop the `How would you like to get started?` dialog from appearing
    when a repository is double clicked on.
    
    Convert GitHubConnectSection to use
    ITeamExplorerServices.OpenRepository instead of
    IVSServices.TryOpenRepository to change repository context. This method
    knows how to change context for Visual Studio 2015, 2017 and 2019.
    jcansdale committed Oct 26, 2018
  5. Commented out ignored test was breaking build

    BrowsesToTheCorrectURL was already being ignored but is now failing to
    compile.
    jcansdale committed Oct 26, 2018
You can’t perform that action at this time.