Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 8aed135

Browse files
authored
Merge branch 'master' into refactor/sdk-csproj
2 parents 706280c + 7fb654e commit 8aed135

File tree

6 files changed

+47
-9
lines changed

6 files changed

+47
-9
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Official builds of this extension are available at [the official website](https:
1919

2020

2121
[![Build status](https://ci.appveyor.com/api/projects/status/dl8is5iqwt9qf3t7/branch/master?svg=true)](https://ci.appveyor.com/project/github-windows/visualstudio/branch/master)
22+
[![codecov](https://codecov.io/gh/GitHub/VisualStudio/branch/master/graph/badge.svg)](https://codecov.io/gh/GitHub/VisualStudio)
2223

2324
[![Join the chat at freenode:github-vs](https://img.shields.io/badge/irc-freenode:%20%23github--vs-blue.svg)](http://webchat.freenode.net/?channels=%23github-vs) [![Join the chat at https://gitter.im/github/VisualStudio](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/github/VisualStudio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2425

appveyor.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
os: Visual Studio 2017
2-
version: '2.5.5.{build}'
2+
version: '2.5.6.{build}'
33
skip_tags: true
44
install:
55
- ps: |
@@ -24,6 +24,11 @@ test:
2424
categories:
2525
except:
2626
- Timings
27+
after_test:
28+
- ps: |
29+
choco install --no-progress opencover.portable codecov
30+
OpenCover.Console.exe --% "-target:nunit3-console.exe" "-targetargs: test\GitHub.Api.UnitTests\bin\Release\GitHub.Api.UnitTests.dll test\GitHub.App.UnitTests\bin\Release\GitHub.App.UnitTests.dll test\GitHub.Exports.Reactive.UnitTests\bin\Release\GitHub.Exports.Reactive.UnitTests.dll test\GitHub.Exports.UnitTests\bin\Release\GitHub.Exports.UnitTests.dll test\GitHub.Extensions.UnitTests\bin\Release\GitHub.Extensions.UnitTests.dll test\GitHub.InlineReviews.UnitTests\bin\Release\GitHub.InlineReviews.UnitTests.dll test\GitHub.Primitives.UnitTests\bin\Release\GitHub.Primitives.UnitTests.dll test\GitHub.TeamFoundation.UnitTests\bin\Release\GitHub.TeamFoundation.UnitTests.dll test\GitHub.UI.UnitTests\bin\Release\GitHub.UI.UnitTests.dll test\GitHub.VisualStudio.UnitTests\bin\Release\GitHub.VisualStudio.UnitTests.dll test\MetricsTests\MetricsTests\bin\Release\MetricsTests.dll test\TrackingCollectionTests\bin\Release\TrackingCollectionTests.dll --where cat!=Timings --inprocess --noresult" -filter:"+[GitHub*]* -[GitHub*UnitTests]*" -register:user -output:".\coverage.xml"
31+
codecov -f "coverage.xml"
2732
on_success:
2833
- ps: |
2934
if ($full_build) {

codecov.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
codecov:
2+
notify:
3+
require_ci_to_pass: yes
4+
5+
coverage:
6+
precision: 2
7+
round: down
8+
range: "70...100"
9+
10+
status:
11+
project: yes
12+
patch: yes
13+
changes: yes
14+
15+
parsers:
16+
gcov:
17+
branch_detection:
18+
conditional: yes
19+
loop: yes
20+
method: no
21+
macro: no
22+
23+
comment:
24+
layout: "header, reach, diff, files"
25+
behavior: new
26+
require_changes: no
27+
28+
fixes:
29+
- "/C/projects/visualstudio/::"

src/GitHub.VisualStudio/GitHub.VisualStudio.vsct

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
xmlns="http://schemas.microsoft.com/VisualStudio/2005-10-18/CommandTable"
44
xmlns:xs="http://www.w3.org/2001/XMLSchema">
55

6+
<!-- Import the standard ImageCatalogGuid monikers -->
7+
<Include href="KnownImageIds.vsct"/>
8+
69
<!-- This is the file that defines the actual layout and type of the commands.
710
It is divided in different sections (e.g. command definition, command
811
placement, ...), with each defining a specific set of properties.
@@ -138,7 +141,7 @@
138141

139142
<!--- Toolbar buttons -->
140143
<Button guid="guidGitHubToolbarCmdSet" id="backCommand" type="Button">
141-
<Icon guid="guidImages" id="arrow_left" />
144+
<Icon guid="ImageCatalogGuid" id="Backwards" />
142145
<CommandFlag>IconIsMoniker</CommandFlag>
143146
<CommandFlag>DefaultDisabled</CommandFlag>
144147
<Strings>
@@ -149,7 +152,7 @@
149152
</Button>
150153

151154
<Button guid="guidGitHubToolbarCmdSet" id="forwardCommand" type="Button">
152-
<Icon guid="guidImages" id="arrow_right" />
155+
<Icon guid="ImageCatalogGuid" id="Forwards" />
153156
<CommandFlag>IconIsMoniker</CommandFlag>
154157
<CommandFlag>DefaultDisabled</CommandFlag>
155158
<Strings>
@@ -171,7 +174,7 @@
171174
</Button>
172175

173176
<Button guid="guidGitHubToolbarCmdSet" id="refreshCommand" type="Button">
174-
<Icon guid="guidImages" id="refresh" />
177+
<Icon guid="ImageCatalogGuid" id="Refresh" />
175178
<CommandFlag>IconIsMoniker</CommandFlag>
176179
<CommandFlag>DefaultDisabled</CommandFlag>
177180
<Strings>
@@ -182,7 +185,7 @@
182185
</Button>
183186

184187
<Button guid="guidGitHubToolbarCmdSet" id="githubCommand" type="Button">
185-
<Icon guid="guidImages" id="logo_toolbar" />
188+
<Icon guid="ImageCatalogGuid" id="OpenWebSite" />
186189
<CommandFlag>IconIsMoniker</CommandFlag>
187190
<CommandFlag>DefaultDisabled</CommandFlag>
188191
<Strings>
@@ -193,7 +196,7 @@
193196
</Button>
194197

195198
<Button guid="guidGitHubToolbarCmdSet" id="helpCommand" type="Button">
196-
<Icon guid="guidImages" id="question" />
199+
<Icon guid="ImageCatalogGuid" id="StatusHelp" />
197200
<CommandFlag>IconIsMoniker</CommandFlag>
198201
<Strings>
199202
<ButtonText>Help</ButtonText>
@@ -227,7 +230,7 @@
227230
</Button>
228231

229232
<Button guid="guidContextMenuSet" id="openLinkCommand" type="Button">
230-
<Icon guid="guidImages" id="link_external" />
233+
<Icon guid="ImageCatalogGuid" id="OpenWebSite" />
231234
<CommandFlag>IconIsMoniker</CommandFlag>
232235
<CommandFlag>DefaultInvisible</CommandFlag>
233236
<CommandFlag>DynamicVisibility</CommandFlag>

src/GitHub.VisualStudio/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="c3d3dc68-c977-411f-b3e8-03b0dccf7dfc" Version="2.5.5.0" Language="en-US" Publisher="GitHub, Inc" />
4+
<Identity Id="c3d3dc68-c977-411f-b3e8-03b0dccf7dfc" Version="2.5.6.0" Language="en-US" Publisher="GitHub, Inc" />
55
<DisplayName>GitHub Extension for Visual Studio</DisplayName>
66
<Description xml:space="preserve">A Visual Studio Extension that brings the GitHub Flow into Visual Studio.</Description>
77
<PackageId>GitHub.VisualStudio</PackageId>

src/common/SolutionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
namespace System
1919
{
2020
internal static class AssemblyVersionInformation {
21-
internal const string Version = "2.5.5.0";
21+
internal const string Version = "2.5.6.0";
2222
}
2323
}

0 commit comments

Comments
 (0)