Skip to content

Commit 1565904

Browse files
authored
Merge pull request #31 from badsyntax/rename
Update extension description
2 parents 9864da8 + 9d39b5f commit 1565904

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Entity Framework Migrations
1+
# Entity Framework
22

33
[![Build & Publish](https://github.com/badsyntax/vscode-entity-framework/actions/workflows/main.yml/badge.svg)](https://github.com/badsyntax/vscode-entity-framework/actions/workflows/main.yml)
44

@@ -26,7 +26,7 @@ A VS Code extension to manage Entity Framework migrations.
2626

2727
A [`Mermaid`](https://mermaid.js.org/syntax/entityRelationshipDiagram.html) [`.t4`](https://learn.microsoft.com/en-us/ef/core/managing-schemas/scaffolding/templates) template will be installed into the project. You can ignore this file (by adding it to `.gitignore`), or add it to source control. The template file is used to generate the ER Diagram, feel free to customise it. If you delete it, it will be regenerated next time you generate an ER Diagram.
2828

29-
<img src="./images/er-diagram.png" width="640" alt="Entity Framework Migrations" />
29+
<img src="./images/er-diagram.png" width="640" alt="Entity Framework ER Diagram" />
3030

3131
## Extension Settings
3232

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-entity-framework",
3-
"displayName": "Entity Framework Migrations",
3+
"displayName": "Entity Framework",
44
"description": "Manage Entity Framework migrations in VS Code",
55
"version": "0.0.0",
66
"engines": {

src/constants/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export const EXTENSION_NAMESPACE = 'entityframework';
22

33
export const TERMINAL_NAME = 'dotnet ef';
44

5-
export const OUTPUT_CHANNEL_ID = 'Entity Framework Migrations';
5+
export const OUTPUT_CHANNEL_ID = 'Entity Framework';
66

77
// https://learn.microsoft.com/en-us/ef/core/providers
88
export const DEFAULT_EFCORE_PROVIDERS = [

0 commit comments

Comments
 (0)