Skip to content

Commit 09d4930

Browse files
authored
chore(ci): add VS marketplace publish manifest (#36)
* chore(ci): add VS marketplace publish manifest - Add extension.manifest.json for automated marketplace publishing - Move icon to root resources folder for shared use - Update README to reference new icon location - Update VSIX manifest with icon references - Remove duplicate Resources/Icons folder from project * chore(ci): enable Q&A on marketplace
1 parent ff9b75e commit 09d4930

File tree

4 files changed

+24
-4
lines changed

4 files changed

+24
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="src/CodingWithCalvin.GitRanger/Resources/Icons/icon.png" alt="Git Ranger Logo" width="128" />
2+
<img src="resources/icon.png" alt="Git Ranger Logo" width="128" />
33
</p>
44

55
# 🤠 Git Ranger

resources/extension.manifest.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"$schema": "http://json.schemastore.org/vsix-publish",
3+
"categories": [
4+
"coding",
5+
"other",
6+
"programming languages"
7+
],
8+
"identity": {
9+
"internalName": "VS-GitRanger"
10+
},
11+
"assetFiles": [
12+
{
13+
"pathOnDisk": "resources/icon.png",
14+
"targetPath": "resources/icon.png"
15+
}
16+
],
17+
"overview": "../README.md",
18+
"publisher": "CodingWithCalvin",
19+
"qna": true,
20+
"repo": "https://www.github.com/CodingWithCalvin/VS-GitRanger"
21+
}

src/CodingWithCalvin.GitRanger/Resources/Icons/icon.png renamed to resources/icon.png

File renamed without changes.

src/CodingWithCalvin.GitRanger/source.extension.vsixmanifest

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88
<License>LICENSE</License>
99
<GettingStartedGuide>https://github.com/calvinallen/GitRanger#readme</GettingStartedGuide>
1010
<ReleaseNotes>https://github.com/calvinallen/GitRanger/releases</ReleaseNotes>
11-
<!-- Icons to be added later -->
12-
<!-- <Icon>Resources\Icons\GitRangerIcon.png</Icon>
13-
<PreviewImage>Resources\Icons\GitRangerPreview.png</PreviewImage> -->
11+
<Icon>..\..\resources\icon.png</Icon>
12+
<PreviewImage>..\..\resources\icon.png</PreviewImage>
1413
<Tags>git, blame, history, graph, version control, source control, gitlens</Tags>
1514
</Metadata>
1615
<Installation>

0 commit comments

Comments
 (0)