Skip to content

Commit 2ec4793

Browse files
committed
Update README.md
1 parent fdbe4f7 commit 2ec4793

File tree

6 files changed

+17
-16
lines changed

6 files changed

+17
-16
lines changed

README.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,20 @@
33
A Visual Studio extension that adds a right-click context menu command that allows you to open manage your local user secrets for any project type - not just Web projects, which is the default Visual Studio behavior.
44

55
## License
6+
67
[![License - MIT](https://img.shields.io/github/license/CodingWithCalvin/VS-BetterUserSecrets?style=for-the-badge)](https://img.shields.io/github/license/CodingWithCalvin/VS-BetterUserSecrets?style=for-the-badge)
78

89
## Build Status
910

10-
TBD
11-
12-
## Deployment Status
13-
14-
TBD
11+
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/codingwithcalvin/VS-BetterUserSecrets/release_build_and_deploy.yml?style=for-the-badge)
1512

1613
## Marketplace Status
1714

18-
TBD
19-
20-
## Description
21-
22-
A Visual Studio extension that adds a right-click context menu command that allows you to open manage your local user secrets for any project type - not just Web projects, which is the default Visual Studio behavior.
15+
[![Marketplace Installations](https://img.shields.io/visual-studio-marketplace/i/codingwithcalvin.VS-BetterUserSecrets?style=for-the-badge)](https://img.shields.io/visual-studio-marketplace/i/codingwithcalvin.VS-BetterUserSecrets?style=for-the-badge) [![Marketplace Downloads](https://img.shields.io/visual-studio-marketplace/d/codingwithcalvin.VS-BetterUserSecrets?style=for-the-badge)](https://img.shields.io/visual-studio-marketplace/d/codingwithcalvin.VS-BetterUserSecrets?style=for-the-badge)
16+
[![Marketplace Version](https://img.shields.io/visual-studio-marketplace/v/codingwithcalvin.VS-BetterUserSecrets?style=for-the-badge)](https://img.shields.io/visual-studio-marketplace/v/codingwithcalvin.VS-BetterUserSecrets?style=for-the-badge) [![Marketplace Rating](https://img.shields.io/visual-studio-marketplace/r/codingwithcalvin.VS-BetterUserSecrets?style=for-the-badge)](https://img.shields.io/visual-studio-marketplace/r/codingwithcalvin.VS-BetterUserSecrets?style=for-the-badge)
2317

2418
## Contribute
2519

26-
For cloning and building this project yourself, make sure to install the [Extensibility Tools Extension](https://marketplace.visualstudio.com/items?itemName=MadsKristensen.ExtensibilityTools) for Visual Studio which enables some features used by this project.
20+
Contributions are welcome! Issues, PRs, etc. While it may seem this extension is "done", who knows what the future may hold for it?
21+
22+
For cloning and building this project yourself, make sure to install the [Extensibility Essentials 2022 extension](https://marketplace.visualstudio.com/items?itemName=MadsKristensen.ExtensibilityEssentials2022) for Visual Studio which enables some features used by this project.

resources/extension.manifest.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
22
"$schema": "http://json.schemastore.org/vsix-publish",
3-
"categories": [ "coding", "other", "programming languages"],
3+
"categories": [
4+
"coding",
5+
"other",
6+
"programming languages"
7+
],
48
"identity": {
59
"internalName": "VS-BetterUserSecrets"
610
},
7-
"overview": "README.md",
11+
"overview": "../README.md",
812
"publisher": "CodingWithCalvin"
913
}

resources/icon.png

-95 KB
Loading

resources/logo.png

-80.1 KB
Loading

src/CodingWithCalvin.BetterUserSecrets/source.extension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ internal sealed partial class Vsix
1313
public const string Language = "en-US";
1414
public const string Version = "1.0";
1515
public const string Author = "Coding With Calvin";
16-
public const string Tags = "coding, other, programming languages";
16+
public const string Tags = "secrets, user-secrets";
1717
}
1818
}

src/CodingWithCalvin.BetterUserSecrets/source.extension.vsixmanifest

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
<Description xml:space="preserve">This extension adds a right-click context menu command that allows you to open manage your local user secrets for any project type - not just Web projects, which is the default Visual Studio behavior.</Description>
77
<MoreInfo>https://github.com/CodingWithCalvin/VS-BetterUserSecrets</MoreInfo>
88
<License>resources\LICENSE</License>
9-
<Icon>resources\Icon.png</Icon>
10-
<Tags>coding, other, programming languages</Tags>
9+
<Icon>resources\logo.png</Icon>
10+
<PreviewImage>resources\logo.png</PreviewImage>
11+
<Tags>secrets, user-secrets</Tags>
1112
</Metadata>
1213
<Installation>
1314
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 18.0)">

0 commit comments

Comments
 (0)