-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added BuildLoggerFactory extension methods (#225)
* Added BuildLoggerFactory extension methods * Updated readme * Updated logging packages to target v7.0.0 +semver: feature
- Loading branch information
1 parent
d491e84
commit 52307d2
Showing
14 changed files
with
183 additions
and
135 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 |
---|---|---|
|
@@ -19,37 +19,32 @@ jobs: | |
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3.0.2 | ||
uses: actions/checkout@v4.1.1 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install GitVersion | ||
uses: gittools/actions/gitversion/setup@v0.9.13 | ||
uses: gittools/actions/gitversion/setup@v0.10.2 | ||
with: | ||
versionSpec: '5.x' | ||
|
||
- name: Use GitVersion | ||
id: gitversion # step id used as reference for output values | ||
uses: gittools/actions/gitversion/execute@v0.9.13 | ||
uses: gittools/actions/gitversion/execute@v0.10.2 | ||
with: | ||
useConfigFile: true | ||
configFilePath: ./GitVersion.yml | ||
|
||
- name: Update project version | ||
uses: roryprimrose/[email protected].5 | ||
uses: roryprimrose/[email protected].6 | ||
with: | ||
version: ${{ steps.gitversion.outputs.NuGetVersionV2 }} | ||
assemblyVersion: ${{ steps.gitversion.outputs.AssemblySemVer }} | ||
fileVersion: ${{ steps.gitversion.outputs.MajorMinorPatch }} | ||
informationalVersion: ${{ steps.gitversion.outputs.InformationalVersion }} | ||
|
||
- name: Setup dotnet v3.1 | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '3.1.x' # SDK Version to use. | ||
|
||
- name: Setup dotnet v6.0 | ||
uses: actions/setup-dotnet@v2.1.0 | ||
uses: actions/setup-dotnet@v3.2.0 | ||
with: | ||
dotnet-version: '6.0.x' # SDK Version to use. | ||
|
||
|
@@ -64,7 +59,7 @@ jobs: | |
|
||
- name: Generate coverage report | ||
# run: reportgenerator -reports:**/coverage.cobertura.xml -targetdir:Report -reporttypes:HtmlInline_AzurePipelines;Cobertura | ||
uses: danielpalme/ReportGenerator-GitHub-Action@5.1.9 | ||
uses: danielpalme/ReportGenerator-GitHub-Action@5.2.0 | ||
with: | ||
reports: "**/coverage*cobertura.xml" | ||
targetdir: "Report" | ||
|
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
18 changes: 9 additions & 9 deletions
18
Divergic.Logging.Xunit.UnitTests/Divergic.Logging.Xunit.UnitTests.csproj
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
Oops, something went wrong.