-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
511 additions
and
461 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
github: loresoft |
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 |
---|---|---|
@@ -1,8 +1,57 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: nuget | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "11:00" | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "01:00" | ||
timezone: "America/Chicago" | ||
open-pull-requests-limit: 10 | ||
|
||
- package-ecosystem: nuget | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "02:00" | ||
timezone: "America/Chicago" | ||
open-pull-requests-limit: 10 | ||
groups: | ||
Azure: | ||
patterns: | ||
- "Azure.*" | ||
- "Microsoft.Azure.*" | ||
- "Microsoft.Extensions.Azure" | ||
AspNetCoreHealthChecks: | ||
patterns: | ||
- "AspNetCore.HealthChecks.*" | ||
AspNetCore: | ||
patterns: | ||
- "Microsoft.AspNetCore.*" | ||
- "Microsoft.Extensions.Features" | ||
MicrosoftExtensions: | ||
patterns: | ||
- "Microsoft.Extensions.*" | ||
EntityFrameworkCore: | ||
patterns: | ||
- "Microsoft.EntityFrameworkCore.*" | ||
OpenTelemetry: | ||
patterns: | ||
- "OpenTelemetry.*" | ||
Serilog: | ||
patterns: | ||
- "Serilog" | ||
- "Serilog.*" | ||
Hangfire: | ||
patterns: | ||
- "Hangfire" | ||
- "Hangfire.*" | ||
Testcontainers: | ||
patterns: | ||
- "Testcontainers.*" | ||
xUnit: | ||
patterns: | ||
- "xunit" | ||
- "xunit.assert" | ||
- "xunit.core" | ||
- "xunit.extensibility.*" | ||
- "xunit.runner.*" |
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 |
---|---|---|
|
@@ -3,7 +3,9 @@ name: Build | |
env: | ||
DOTNET_NOLOGO: true | ||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
BUILD_PATH: '${{github.workspace}}/artifacts' | ||
DOTNET_ENVIRONMENT: github | ||
ASPNETCORE_ENVIRONMENT: github | ||
BUILD_PATH: "${{github.workspace}}/artifacts" | ||
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | ||
|
||
on: | ||
|
@@ -12,7 +14,7 @@ on: | |
- master | ||
- develop | ||
tags: | ||
- 'v*' | ||
- "v*" | ||
pull_request: | ||
branches: | ||
- master | ||
|
@@ -23,82 +25,72 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install .NET Core | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: | | ||
6.0.x | ||
7.0.x | ||
- name: Restore Dependencies | ||
run: dotnet restore | ||
|
||
- name: Build Solution | ||
run: dotnet build --no-restore --configuration Release | ||
|
||
- name: Run Test | ||
run: dotnet test --configuration Release --collect:"XPlat Code Coverage" --settings coverlet.runsettings | ||
|
||
- name: Generate Coverage | ||
uses: danielpalme/[email protected] | ||
with: | ||
reports: '${{github.workspace}}/test/*/TestResults/*/coverage.info' | ||
targetdir: ${{env.BUILD_PATH}} | ||
reporttypes: lcov | ||
|
||
- name: Report Coverage | ||
if: success() | ||
uses: coverallsapp/github-action@v2 | ||
with: | ||
file: artifacts/lcov.info | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 9.x | ||
|
||
- name: Restore Dependencies | ||
run: dotnet restore | ||
|
||
- name: Build Solution | ||
run: dotnet build --no-restore --configuration Release | ||
|
||
- name: Run Test | ||
run: dotnet test --no-build --configuration Release --collect:"XPlat Code Coverage" --settings coverlet.runsettings | ||
|
||
- name: Report Coverage | ||
if: success() | ||
uses: coverallsapp/github-action@v2 | ||
with: | ||
file: "${{github.workspace}}/test/*/TestResults/*/coverage.info" | ||
format: lcov | ||
|
||
- name: Create Packages | ||
if: success() && github.event_name != 'pull_request' | ||
run: dotnet pack --configuration Release --include-symbols --include-source --no-build --no-restore --output "${{env.BUILD_PATH}}" | ||
- name: Create Packages | ||
if: success() && github.event_name != 'pull_request' | ||
run: dotnet pack --configuration Release --no-build --output "${{env.BUILD_PATH}}" | ||
|
||
- name: Upload Packages | ||
if: success() && github.event_name != 'pull_request' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: packages | ||
path: '${{env.BUILD_PATH}}' | ||
- name: Upload Packages | ||
if: success() && github.event_name != 'pull_request' | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: packages | ||
path: "${{env.BUILD_PATH}}" | ||
|
||
deploy: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
if: success() && github.event_name != 'pull_request' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')) | ||
|
||
steps: | ||
- name: Download Artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: packages | ||
|
||
- name: Publish Packages GitHub | ||
run: | | ||
for package in $(find -name "*.nupkg"); do | ||
echo "${0##*/}": Pushing $package... | ||
dotnet nuget push $package --source https://nuget.pkg.github.com/loresoft/index.json --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate | ||
done | ||
- name: Publish Packages feedz | ||
run: | | ||
for package in $(find -name "*.nupkg"); do | ||
echo "${0##*/}": Pushing $package... | ||
dotnet nuget push $package --source https://f.feedz.io/loresoft/open/nuget/index.json --api-key ${{ secrets.FEEDDZ_KEY }} --skip-duplicate | ||
done | ||
- name: Publish Packages Nuget | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
run: | | ||
for package in $(find -name "*.nupkg"); do | ||
echo "${0##*/}": Pushing $package... | ||
dotnet nuget push $package --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_KEY }} --skip-duplicate | ||
done | ||
- name: Download Artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: packages | ||
|
||
- name: Publish Packages GitHub | ||
run: | | ||
for package in $(find -name "*.nupkg"); do | ||
echo "${0##*/}": Pushing $package... | ||
dotnet nuget push $package --source https://nuget.pkg.github.com/loresoft/index.json --api-key ${{ secrets.GITHUB_TOKEN }} --skip-duplicate | ||
done | ||
- name: Publish Packages feedz | ||
run: | | ||
for package in $(find -name "*.nupkg"); do | ||
echo "${0##*/}": Pushing $package... | ||
dotnet nuget push $package --source https://f.feedz.io/loresoft/open/nuget/index.json --api-key ${{ secrets.FEEDDZ_KEY }} --skip-duplicate | ||
done | ||
- name: Publish Packages Nuget | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
run: | | ||
for package in $(find -name "*.nupkg"); do | ||
echo "${0##*/}": Pushing $package... | ||
dotnet nuget push $package --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_KEY }} --skip-duplicate | ||
done |
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 @@ | ||
name: Dependabot Auto-Merge | ||
on: pull_request | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
dependabot: | ||
runs-on: ubuntu-latest | ||
if: github.actor == 'dependabot[bot]' | ||
|
||
steps: | ||
- name: Dependabot Metadata | ||
id: metadata | ||
uses: dependabot/fetch-metadata@v2 | ||
with: | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
- name: Dependabot Auto-Merge PRs | ||
run: gh pr merge --auto --merge "$PR_URL" | ||
env: | ||
PR_URL: ${{github.event.pull_request.html_url}} | ||
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,31 @@ | ||
using System; | ||
using System.Xml.Linq; | ||
|
||
namespace DotNet.Property | ||
namespace DotNet.Property; | ||
|
||
/// <summary> | ||
/// Extension methods | ||
/// </summary> | ||
public static class Extensions | ||
{ | ||
/// <summary> | ||
/// Extension methods | ||
/// Gets the or create an <see cref="XElement"/>. | ||
/// </summary> | ||
public static class Extensions | ||
/// <param name="container">The container.</param> | ||
/// <param name="name">The name of the element.</param> | ||
/// <returns></returns> | ||
/// <exception cref="ArgumentNullException"><paramref name="container"/> or <paramref name="name"/> is <see langword="null"/></exception> | ||
public static XElement GetOrCreateElement(this XContainer container, string name) | ||
{ | ||
/// <summary> | ||
/// Gets the or create an <see cref="XElement"/>. | ||
/// </summary> | ||
/// <param name="container">The container.</param> | ||
/// <param name="name">The name of the element.</param> | ||
/// <returns></returns> | ||
/// <exception cref="ArgumentNullException"><paramref name="container"/> or <paramref name="name"/> is <see langword="null"/></exception> | ||
public static XElement GetOrCreateElement(this XContainer container, string name) | ||
{ | ||
if (container == null) | ||
throw new ArgumentNullException(nameof(container)); | ||
if (name == null) | ||
throw new ArgumentNullException(nameof(name)); | ||
ArgumentNullException.ThrowIfNull(container); | ||
ArgumentNullException.ThrowIfNull(name); | ||
|
||
var element = container.Element(name); | ||
if (element != null) | ||
return element; | ||
var element = container.Element(name); | ||
if (element != null) | ||
return element; | ||
|
||
element = new XElement(name); | ||
container.Add(element); | ||
element = new XElement(name); | ||
container.Add(element); | ||
|
||
return element; | ||
} | ||
return element; | ||
} | ||
} | ||
} |
Oops, something went wrong.