Skip to content

Commit

Permalink
Merge pull request #31 from badsyntax/rename
Browse files Browse the repository at this point in the history
Update extension description
  • Loading branch information
badsyntax authored Dec 30, 2022
2 parents 9864da8 + 9d39b5f commit 1565904
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Entity Framework Migrations
# Entity Framework

[![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)

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

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.

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

## Extension Settings

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-entity-framework",
"displayName": "Entity Framework Migrations",
"displayName": "Entity Framework",
"description": "Manage Entity Framework migrations in VS Code",
"version": "0.0.0",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/constants/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const EXTENSION_NAMESPACE = 'entityframework';

export const TERMINAL_NAME = 'dotnet ef';

export const OUTPUT_CHANNEL_ID = 'Entity Framework Migrations';
export const OUTPUT_CHANNEL_ID = 'Entity Framework';

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

0 comments on commit 1565904

Please sign in to comment.