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

Commit e95d218

Browse files
committed
Merge branch 'master' into fixes/1666-filter-pr-solution-explorer
2 parents da6ef3e + 5f502af commit e95d218

File tree

663 files changed

+22110
-15382
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

663 files changed

+22110
-15382
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,12 @@ $RECYCLE.BIN/
232232
*.msm
233233
*.msp
234234

235+
#OpenCover output
236+
coverage.xml
237+
238+
#Msbuild binary log output
239+
output.binlog
240+
235241
AkavacheSqliteLinkerOverride.cs
236242
NuGetBuild
237243
WiX.Toolset.DummyFile.txt
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<ProjectConfiguration>
22
<Settings>
3+
<AdditionalFilesToIncludeForProject>
4+
<Value>xlf\**.*</Value>
5+
</AdditionalFilesToIncludeForProject>
36
<PreviouslyBuiltSuccessfully>True</PreviouslyBuiltSuccessfully>
47
</Settings>
58
</ProjectConfiguration>

CONTRIBUTING.md

+8-8

Directory.Build.Props

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project>
2+
<PropertyGroup>
3+
<Product>GitHub Extension for Visual Studio</Product>
4+
<Version>2.5.9.0</Version>
5+
<Copyright>Copyright © GitHub, Inc. 2014-2018</Copyright>
6+
<LangVersion>7.3</LangVersion>
7+
</PropertyGroup>
8+
</Project>

GitHubVS.sln

+256-149
Large diffs are not rendered by default.

ISSUE_TEMPLATE.md

+20-2

README.md

+10-5

appveyor.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
version: '2.5.2.{build}'
1+
os: Visual Studio 2017
2+
version: '2.5.9.{build}'
23
skip_tags: true
34
install:
45
- ps: |
@@ -28,3 +29,7 @@ on_success:
2829
if ($full_build) {
2930
script\Sign-Package -AppVeyor
3031
}
32+
on_finish:
33+
- ps: scripts\Run-CodeCoverage.ps1 -AppVeyor -Configuration:Release
34+
- IF NOT "%BCC_TOKEN%x"=="x" %USERPROFILE%\.nuget\packages\bcc-msbuildlog\0.0.2-alpha\tools\net471\BCC.MSBuildLog.exe -i output.binlog -o checkrun.json -c "%APPVEYOR_BUILD_FOLDER%"
35+
- IF NOT "%BCC_TOKEN%x"=="x" %USERPROFILE%\.nuget\packages\bcc-submission\0.0.2-alpha\tools\net471\BCC.Submission.exe -i checkrun.json -t "%BCC_TOKEN%" -h "%APPVEYOR_REPO_COMMIT%"

codecov.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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: no
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, diff, files"
25+
behavior: once
26+
require_changes: no
27+
28+
fixes:
29+
- "/C/projects/visualstudio/::"
30+
31+
ignore:
32+
- "*.xaml"
33+
- "*.xaml.cs"
34+
- "**/SampleData/*"

crowdin.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
preserve_hierarchy: true
2+
3+
files:
4+
- source: /src/GitHub.Resources/Resources.resx
5+
translation: /%original_path%/Resources.%locale%.resx
6+
- source: /src/GitHub.VisualStudio/xlf/GitHub.VisualStudio.vsct.zh-CN.xlf
7+
translation: /%original_path%/GitHub.VisualStudio.vsct.%locale%.xlf
8+
- source: /src/GitHub.VisualStudio/xlf/VSPackage.zh-CN.xlf
9+
translation: /%original_path%/VSPackage.%locale%.xlf

docs/contributing/cloning-a-repository-to-visual-studio.md

-19
This file was deleted.

docs/contributing/creating-gists.md

-23
This file was deleted.
-34.7 KB
Binary file not shown.
-26.3 KB
Binary file not shown.
-4.14 KB
Binary file not shown.
-29 KB
Binary file not shown.

docs/contributing/viewing-the-pull-requests-for-a-repository.md

-15
This file was deleted.

docs/developer/how-viewmodels-are-turned-into-views.md

+5-5

docs/using/creating-gists.md

+26
306 KB

docs/using/images/add-review.png

7.83 KB

docs/using/images/clone-dialog.png

209 KB
File renamed without changes.
125 KB
22.5 KB
File renamed without changes.
352 KB
File renamed without changes.

docs/using/images/delete-comment.png

57.4 KB

docs/using/images/edit-comment.png

30.3 KB
44.6 KB
36.6 KB
File renamed without changes.

docs/using/images/pr-detail-view.png

227 KB
File renamed without changes.
File renamed without changes.
99.2 KB
124 KB

docs/using/images/single-comment.png

33.8 KB
13.7 KB

docs/using/images/submit-review.png

37.2 KB

0 commit comments

Comments
 (0)