-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from The-Standard-Organization/users/cjdutoit/…
…coderub-project-rename CODE RUB: Renamed Interface project to Abstractions
- Loading branch information
Showing
15 changed files
with
217 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,3 +42,104 @@ jobs: | |
run: dotnet build --no-restore | ||
- name: Test | ||
run: dotnet test --no-build --verbosity normal | ||
add_tag: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- build | ||
if: >- | ||
needs.build.result == 'success' && | ||
github.event.pull_request.merged && | ||
github.event.pull_request.base.ref == 'main' && | ||
startsWith(github.event.pull_request.title, 'RELEASES:') && | ||
contains(github.event.pull_request.labels.*.name, 'RELEASES') | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.PAT_FOR_TAGGING }} | ||
- name: Configure Git | ||
run: >- | ||
git config user.name "GitHub Action" | ||
git config user.email "[email protected]" | ||
- name: Extract Version | ||
id: extract_version | ||
run: > | ||
# Running on Linux/Unix | ||
sudo apt-get install xmlstarlet | ||
version_number=$(xmlstarlet sel -t -v "//Version" -n STX.EFxceptions.Core/STX.EFxceptions.Core.csproj) | ||
echo "$version_number" | ||
echo "version_number<<EOF" >> $GITHUB_OUTPUT | ||
echo "$version_number" >> $GITHUB_OUTPUT | ||
echo "EOF" >> $GITHUB_OUTPUT | ||
shell: bash | ||
- name: Display Version | ||
run: 'echo "Version number: ${{ steps.extract_version.outputs.version_number }}"' | ||
- name: Extract Package Release Notes | ||
id: extract_package_release_notes | ||
run: > | ||
# Running on Linux/Unix | ||
sudo apt-get install xmlstarlet | ||
package_release_notes=$(xmlstarlet sel -t -v "//PackageReleaseNotes" -n STX.EFxceptions.Core/STX.EFxceptions.Core.csproj) | ||
echo "$package_release_notes" | ||
echo "package_release_notes<<EOF" >> $GITHUB_OUTPUT | ||
echo "$package_release_notes" >> $GITHUB_OUTPUT | ||
echo "EOF" >> $GITHUB_OUTPUT | ||
shell: bash | ||
- name: Display Package Release Notes | ||
run: 'echo "Package Release Notes: ${{ steps.extract_package_release_notes.outputs.package_release_notes }}"' | ||
- name: Create GitHub Tag | ||
run: >- | ||
git tag -a "v${{ steps.extract_version.outputs.version_number }}" -m "Release - v${{ steps.extract_version.outputs.version_number }}" | ||
git push origin --tags | ||
- name: Create GitHub Release | ||
uses: actions/create-release@v1 | ||
with: | ||
tag_name: v${{ steps.extract_version.outputs.version_number }} | ||
release_name: Release - v${{ steps.extract_version.outputs.version_number }} | ||
body: >- | ||
## Release - v${{ steps.extract_version.outputs.version_number }} | ||
### Release Notes | ||
${{ steps.extract_package_release_notes.outputs.package_release_notes }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAT_FOR_TAGGING }} | ||
publish: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- add_tag | ||
if: needs.add_tag.result == 'success' | ||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v3 | ||
- name: Setup .Net | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 7.0.201 | ||
- name: Restore | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --no-restore --configuration Release | ||
- name: Pack NuGet Package | ||
run: dotnet pack --configuration Release --include-symbols | ||
- name: Push NuGet Package | ||
run: dotnet nuget push **/bin/Release/**/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_ACCESS }} --skip-duplicate |
4 changes: 2 additions & 2 deletions
4
...s/Brokers/DbErrorBroker/IDbErrorBroker.cs → ...s/Brokers/DbErrorBroker/IDbErrorBroker.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
STX.EFxceptions.Abstractions/Models/Exceptions/DuplicateKeyException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// ---------------------------------------------------------------------------------- | ||
// Copyright (c) The Standard Organization: A coalition of the Good-Hearted Engineers | ||
// ---------------------------------------------------------------------------------- | ||
|
||
using Microsoft.EntityFrameworkCore; | ||
|
||
namespace STX.EFxceptions.Abstractions.Models.Exceptions | ||
{ | ||
public class DuplicateKeyException : DbUpdateException | ||
{ | ||
public DuplicateKeyException(string message) : base(message) { } | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
STX.EFxceptions.Abstractions/Models/Exceptions/DuplicateKeyWithUniqueIndexException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// ---------------------------------------------------------------------------------- | ||
// Copyright (c) The Standard Organization: A coalition of the Good-Hearted Engineers | ||
// ---------------------------------------------------------------------------------- | ||
|
||
using Microsoft.EntityFrameworkCore; | ||
|
||
namespace STX.EFxceptions.Abstractions.Models.Exceptions | ||
{ | ||
public class DuplicateKeyWithUniqueIndexException : DbUpdateException | ||
{ | ||
public string DuplicateKeyValue { get; } | ||
|
||
public DuplicateKeyWithUniqueIndexException(string message) | ||
: base(message) | ||
{ | ||
string[] subStrings = message.Split('(', ')'); | ||
|
||
if (subStrings.Length == 3) | ||
{ | ||
DuplicateKeyValue = subStrings[1]; | ||
} | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
STX.EFxceptions.Abstractions/Models/Exceptions/ForeignKeyConstraintConflictException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// ---------------------------------------------------------------------------------- | ||
// Copyright (c) The Standard Organization: A coalition of the Good-Hearted Engineers | ||
// ---------------------------------------------------------------------------------- | ||
|
||
using Microsoft.EntityFrameworkCore; | ||
|
||
namespace STX.EFxceptions.Abstractions.Models.Exceptions | ||
{ | ||
public class ForeignKeyConstraintConflictException : DbUpdateException | ||
{ | ||
public ForeignKeyConstraintConflictException(string message) : base(message) { } | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
STX.EFxceptions.Abstractions/Models/Exceptions/InvalidColumnNameException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// ---------------------------------------------------------------------------------- | ||
// Copyright (c) The Standard Organization: A coalition of the Good-Hearted Engineers | ||
// ---------------------------------------------------------------------------------- | ||
|
||
using Microsoft.EntityFrameworkCore; | ||
|
||
namespace STX.EFxceptions.Abstractions.Models.Exceptions | ||
{ | ||
public class InvalidColumnNameException : DbUpdateException | ||
{ | ||
public InvalidColumnNameException(string message) : base(message) { } | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
STX.EFxceptions.Abstractions/Models/Exceptions/InvalidObjectNameException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// ---------------------------------------------------------------------------------- | ||
// Copyright (c) The Standard Organization: A coalition of the Good-Hearted Engineers | ||
// ---------------------------------------------------------------------------------- | ||
|
||
using Microsoft.EntityFrameworkCore; | ||
|
||
namespace STX.EFxceptions.Abstractions.Models.Exceptions | ||
{ | ||
public class InvalidObjectNameException : DbUpdateException | ||
{ | ||
public InvalidObjectNameException(string message) : base(message) { } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ervices/EFxceptions/IEFxceptionService.cs → ...ervices/EFxceptions/IEFxceptionService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters