Skip to content

Commit ce4b819

Browse files
authored
Prepare for the initial release (#1)
* Initial port from easify * Prepared the solution for the first release * Update README.md
1 parent 3a1b83f commit ce4b819

File tree

63 files changed

+276
-262
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+276
-262
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ jobs:
4949
name: nuget-packages
5050
path: "**/*.nupkg"
5151
- name: Configure github as Package Repository
52-
run: dotnet nuget add source https://nuget.pkg.github.com/icgam/index.json -n "github"
52+
run: dotnet nuget add source https://nuget.pkg.github.com/LittleBlocks/index.json -n "github"
5353
- name: Publish the package to GitHub Packages
5454
run: dotnet nuget push "**/*.nupkg" -s "github" -k ${{ secrets.GITHUB_TOKEN }} --skip-duplicate

GitVersion.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
next-version: 1.0.0
2+
mode: Mainline
3+
major-version-bump-message: '\+semver:\s?(breaking|major)'
4+
minor-version-bump-message: '\+semver:\s?(feature|minor)'
5+
patch-version-bump-message: '\+semver:\s?(fix|patch)'
6+
no-bump-message: '\+semver:\s?(none|skip)'
7+
ignore:
8+
commits-before: 2023-01-01T00:00:00
9+

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Easify - Notification Services
1+
# LittleBlocks - Notification Services
22

33
The project consist of several packages which facilitate sending notifications. It covers the following scenarios:
4-
![Release](https://github.com/icgam/Easify.Notifications/workflows/Release%20build%20on%20master/main/badge.svg) ![CI](https://github.com/icgam/Easify.Notifications/workflows/CI%20on%20Branches%20and%20PRs/badge.svg) ![](https://img.shields.io/nuget/v/Easify.Notifications.svg?style=flat-square)
4+
![Release](https://github.com/LittleBlocks/LittleBlocks.Notifications/workflows/Release%20build%20on%20master/main/badge.svg) ![CI](https://github.com/LittleBlocks/LittleBlocks.Notifications/workflows/CI%20on%20Branches%20and%20PRs/badge.svg) ![](https://img.shields.io/nuget/v/LittleBlocks.Notifications.svg?style=flat-square)
55

66
1. Rendering the output message content (Current support is for handle bars using https://github.com/Antaris/FuManchu library)
77

@@ -14,13 +14,13 @@ The project consist of several packages which facilitate sending notifications.
1414
Using NuGet
1515

1616
```
17-
Install-Package Easify.Notifications
17+
Install-Package LittleBlocks.Notifications
1818
```
1919

2020
Using dotnet cli
2121

2222
```
23-
dotnet add package Easify.Notifications
23+
dotnet add package LittleBlocks.Notifications
2424
```
2525

2626
### Configuration
@@ -70,7 +70,7 @@ Also the following sections need to be added to the _appsettings.json_ file.
7070
},
7171
"SmtpOptions": {
7272
"Server": "Smtp server name",
73-
"LocalDomain": "ICGPLC",
73+
"LocalDomain": "LittleBlocks",
7474
"Port": "Optional. Default to 25"
7575
}
7676

src/Easify.Notifications.Messaging.MailKit/Easify.Notifications.Messaging.MailKit.csproj

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/Easify.Notifications.Messaging/Easify.Notifications.Messaging.csproj

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/Easify.Notifications.Templating/Easify.Notifications.Templating.csproj

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/Easify.Notifications.Templating/Usings.cs

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/Easify.Notifications.UnitTests/Usings.cs

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/Easify.Notifications/Easify.Notifications.csproj

Lines changed: 0 additions & 31 deletions
This file was deleted.

src/Easify.Notifications/Usings.cs

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)