Skip to content

Commit 322711b

Browse files
committed
refact: rename 'logofx-model' template into 'logofx-entity' #65
1 parent 091d004 commit 322711b

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dotnet new logofx-wpf -n <solution-name>
2626
Inside solution folder run
2727

2828
```
29-
dotnet new logofx-model -sn <solution-name> -n <entity-name> [--allow-scripts yes]
29+
dotnet new logofx-entity -sn <solution-name> -n <entity-name> [--allow-scripts yes]
3030
```
3131

3232
This command adds `<entity-name>` entity to `<solution-name>.Model` project; `I<entity-name>` contract to `<solution-name>.Model.Contracts` project; `<entity-name>Dto` dto to `<solution-name>.Data.Contracts.Dto` project.
File renamed without changes.

devops/pack-templates.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if %ERRORLEVEL% NEQ 0 (
66
goto EXIT
77
)
88

9-
call copy-template-logofx-model.cmd
9+
call copy-template-logofx-entity.cmd
1010

1111
if %ERRORLEVEL% NEQ 0 (
1212
goto EXIT

specs/LogoFX.Cli.Dotnet.Specs.Features/Model Generation.feature

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Scenario Outline: Generate model entity in an empty folder
77
When I install the template pack 'LogoFX.Templates' from local package
88
And I create a folder named 'Generation'
9-
And I generate the code in folder named 'Generation' using 'logofx-model' template with the following options
9+
And I generate the code in folder named 'Generation' using 'logofx-entity' template with the following options
1010
| Name | Value |
1111
| -n | <entityNameValue> |
1212
| <solutionNameOption> | Test |
@@ -22,7 +22,7 @@ Scenario Outline: Generate model entity in existing solution
2222
When I install the template pack 'LogoFX.Templates' from local package
2323
And I create a folder named 'Generation'
2424
And I generate the code in folder named 'Generation' using 'logofx-wpf' template with the default options
25-
And I generate the code in folder named 'Generation' using 'logofx-model' template with the following options
25+
And I generate the code in folder named 'Generation' using 'logofx-entity' template with the following options
2626
| Name | Value |
2727
| -n | Sample |
2828
| <solutionNameOption> | Test |

specs/LogoFX.Cli.Dotnet.Specs.Features/Model Generation.feature.cs

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specs/LogoFX.Cli.Dotnet.Specs.Features/Solution Generation.feature

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Scenario: Install template pack
88
Then The template for 'logofx-wpf' is installed with the following parameters
99
| Description | Short Name | Languages | Tags |
1010
| LogoFX WPF Application | logofx-wpf | [C#] | LogoFX/WPF |
11-
And The template for 'logofx-model' is installed with the following parameters
12-
| Description | Short Name | Languages | Tags |
13-
| LogoFX Model Entity | logofx-model | [C#] | LogoFX/Model |
11+
And The template for 'logofx-entity' is installed with the following parameters
12+
| Description | Short Name | Languages | Tags |
13+
| LogoFX Model Entity | logofx-entity | [C#] | LogoFX/Entity |
1414

1515
Scenario: Generate solution skeleton
1616
When I install the template pack 'LogoFX.Templates' from local package

specs/LogoFX.Cli.Dotnet.Specs.Features/Solution Generation.feature.cs

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/LogoFX.Templates.Model.Entity/.template.config/template.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"$schema": "http://json.schemastore.org/template",
33
"author": "LogoUI",
4-
"classifications": [ "LogoFX", "Model" ],
4+
"classifications": [ "LogoFX", "Entity" ],
55
"name": "LogoFX Model Entity",
66
"identity": "LogoFX.Model.Entity",
7-
"groupIdentity":"LogoFX.Model",
8-
"shortName": "logofx-model",
7+
"groupIdentity":"LogoFX.Entity",
8+
"shortName": "logofx-entity",
99
"sourceName": "SampleModel",
1010
"sources": [
1111
{

templates/LogoFX.Templates.Service.Entity/post-setup-entity-service.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
REM Launch dotnet new
22

3-
dotnet new logofx-model -n SampleModel -sn LogoFX.Templates --allow-scripts yes
3+
dotnet new logofx-entity -n SampleModel -sn LogoFX.Templates --allow-scripts yes
44

55
if %ERRORLEVEL% NEQ 0 (
66
exit /b %ERRORLEVEL%

0 commit comments

Comments
 (0)