Skip to content

Commit 5fbc9f6

Browse files
authored
💄 Remove Hona's Branding (#82)
This is part 1
1 parent 20d8db4 commit 5fbc9f6

File tree

6 files changed

+25
-22
lines changed

6 files changed

+25
-22
lines changed

.github/workflows/meta-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434
run: dotnet new install .
3535

3636
# Tests that the template follows the parent structure
37-
# Tests that the dotnet new command works 'hona-vsa'
37+
# Tests that the dotnet new command works 'ssw-vsa'
3838
- name: Create new Project
3939
run: |
4040
mkdir -p ./temp/MyTestApp
4141
cd ./temp/MyTestApp
42-
dotnet new hona-vsa
42+
dotnet new ssw-vsa
4343
4444
# Tests that a fresh project can be built (in debug mode)
4545
- name: Build fresh Project
@@ -51,7 +51,7 @@ jobs:
5151
- name: Create new slice
5252
run: |
5353
cd ./temp/MyTestApp/src/MyTestApp/Features
54-
dotnet new hona-vsa-slice -f Student
54+
dotnet new ssw-vsa-slice -f Student
5555
5656
# Tests that a fresh slice leaves the project in a buildable state
5757
- name: Build after a new slice

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
3838
git config --global user.name "github-actions[bot]"
3939
git tag -m "CI: create new tag" ${{ steps.package_version.outputs.version }}
40-
git push https://${{ github.token }}@github.com/Hona/VerticalSliceArchitecture
40+
git push https://${{ github.token }}@github.com/SSWConsulting/VerticalSliceArchitecture
4141
4242
- name: Create release
4343
uses: ncipollo/[email protected]

.template.config/template.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json.schemastore.org/template",
3-
"author": "Hona",
3+
"author": "SSW Consulting",
44
"classifications": [
55
".NET",
66
"Vertical Slice Architecture",
@@ -10,9 +10,9 @@
1010
],
1111
"name": "Vertical Slice Architecture Solution",
1212
"description": "Creates a new Vertical Slice Architecture Solution",
13-
"identity": "Hona.VerticalSliceArchitecture.Solution.CSharp",
14-
"groupIdentity": "Hona.VerticalSliceArchitecture.Solution",
15-
"shortName": "hona-vsa",
13+
"identity": "SSW.VerticalSliceArchitecture.Solution.CSharp",
14+
"groupIdentity": "SSW.VerticalSliceArchitecture.Solution",
15+
"shortName": "ssw-vsa",
1616
"tags": {
1717
"language": "C#",
1818
"type": "project"

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
[![VerticalSliceArchitecture Template Banner](https://raw.githubusercontent.com/Hona/VerticalSliceArchitecture/main/docs/banner.png)](https://github.com/Hona/VerticalSliceArchitecture)
1+
[![SSW Banner](https://raw.githubusercontent.com/SSWConsulting/SSW.Rules.Content/main/_docs/images/ssw-banner.png)](https://github.com/SSWConsulting/VerticalSliceArchitecture)
22

33
# 🤔 What is it?
44

5-
A small but opinionated Vertical Slice Architecture solution template for .NET 8
5+
An enterprise ready solution template for Vertical Slice Architecture.
6+
This template is just one way to apply the Vertical Slice Architecture.
7+
8+
Read more on [SSW Rules to Better Vertical Slice Architecture](https://www.ssw.com.au/rules/rules-to-better-vertical-slice-architecture/)
69

710
## Learn
811

@@ -16,7 +19,7 @@ A small but opinionated Vertical Slice Architecture solution template for .NET 8
1619
To install the template from NuGet.org run the following command:
1720

1821
```bash
19-
dotnet new install Hona.VerticalSliceArchitecture.Template
22+
dotnet new install SSW.VerticalSliceArchitecture.Template
2023
```
2124

2225
Then create a new solution:
@@ -25,7 +28,7 @@ Then create a new solution:
2528
mkdir Sprout
2629
cd Sprout
2730

28-
dotnet new hona-vsa
31+
dotnet new ssw-vsa
2932
```
3033

3134
Finally, to update the template to the latest version run:
@@ -39,7 +42,7 @@ dotnet new update
3942
To speed up development there is a `dotnet new` template to create a full Vertical Slice.
4043

4144
```bash
42-
dotnet new hona-vsa-slice -f Student
45+
dotnet new ssw-vsa-slice -f Student
4346
```
4447
`-f` or `--feature` where the feature name is the **singular** name of the feature.
4548

@@ -48,7 +51,7 @@ Of course, there are always exceptions where appending an 's' is not enough. For
4851
For this, use the optional parameter:
4952

5053
```bash
51-
dotnet new hona-vsa-slice -f Person -fp People
54+
dotnet new ssw-vsa-slice -f Person -fp People
5255
```
5356

5457
optional: `-fp` or `--feature-plural` where the feature name is the **plural** name of the feature.

VerticalSliceArchitecture.nuspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44

5-
<id>Hona.VerticalSliceArchitecture.Template</id>
5+
<id>SSW.VerticalSliceArchitecture.Template</id>
66
<version>0.8.0</version>
77
<title>Vertical Slice Architecture Template</title>
8-
<authors>Hona</authors>
8+
<authors>SSW Consulting</authors>
99
<description>Vertical Slice Architecture template using ASP.NET Core</description>
1010
<summary>
1111
This template is a way to get up and running using VSA in ASP.NET Core and C#. It is using Fast Endpoints as well as EF Core.
@@ -30,8 +30,8 @@
3030
</releaseNotes>
3131
<readme>README.md</readme>
3232

33-
<projectUrl>https://github.com/Hona/VerticalSliceArchitecture</projectUrl>
34-
<repository type="git" url="https://github.com/Hona/VerticalSliceArchitecture.git" branch="main" />
33+
<projectUrl>https://github.com/SSWConsulting/VerticalSliceArchitecture</projectUrl>
34+
<repository type="git" url="https://github.com/SSWConsulting/VerticalSliceArchitecture.git" branch="main" />
3535

3636
<license type="expression">MIT</license>
3737
<requireLicenseAcceptance>false</requireLicenseAcceptance>

src/VerticalSliceArchitectureTemplate/Features/.template.config/template.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json.schemastore.org/template",
3-
"author": "Hona",
3+
"author": "SSW Consulting",
44
"classifications": [
55
".NET",
66
"Vertical Slice Architecture",
@@ -10,9 +10,9 @@
1010
],
1111
"name": "Vertical Slice",
1212
"description": "Create a new full vertical slice",
13-
"identity": "Hona.VerticalSliceArchitecture.Slice.CSharp",
14-
"groupIdentity": "Hona.VerticalSliceArchitecture.Slice",
15-
"shortName": "hona-vsa-slice",
13+
"identity": "SSW.VerticalSliceArchitecture.Slice.CSharp",
14+
"groupIdentity": "SSW.VerticalSliceArchitecture.Slice",
15+
"shortName": "ssw-vsa-slice",
1616
"tags": {
1717
"language": "C#",
1818
"type": "item"

0 commit comments

Comments
 (0)