From 1396e978db8299883d2d54779d54f94da13a3b9e Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Mon, 22 Jul 2024 00:00:28 +0200 Subject: [PATCH 1/2] Fixed doc-comment mistake --- RGB.NET.Presets/Extensions/HPPHExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RGB.NET.Presets/Extensions/HPPHExtensions.cs b/RGB.NET.Presets/Extensions/HPPHExtensions.cs index 363b9bc5..e0b37dee 100644 --- a/RGB.NET.Presets/Extensions/HPPHExtensions.cs +++ b/RGB.NET.Presets/Extensions/HPPHExtensions.cs @@ -9,14 +9,14 @@ namespace RGB.NET.Presets.Extensions; public static class HPPHExtensions { /// - /// Converts the given HPPH to a RGB.NET . + /// Converts the given HPPH to a RGB.NET . /// /// The color to convert. /// The converted color. public static Color ToColor(this IColor color) => new(color.A, color.R, color.G, color.B); /// - /// Converts the given HPPH to a RGB.NET . + /// Converts the given HPPH to a RGB.NET . /// /// The color to convert. /// The color-type of the HPPH color. From 9a997694a56477754d740ca3b5bf03d1f96986e7 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Mon, 22 Jul 2024 00:01:50 +0200 Subject: [PATCH 2/2] Updated build-files --- .github/workflows/ci.yml | 14 -------------- .github/workflows/pr_verify.yml | 2 -- .github/workflows/release.yml | 14 -------------- 3 files changed, 30 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5dd87e20..61ca30f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,26 +25,12 @@ jobs: with: dotnet-version: | 8.0.x - 7.0.x - 6.0.x - name: Restore dependencies run: dotnet restore - name: Build run: dotnet build --no-restore --configuration Release /p:Version=${{ github.event.inputs.version }}-prerelease.${{ github.event.inputs.increment }} - name: Test run: dotnet test --no-build --verbosity normal --configuration Release - - name: Upload a Build Artifact NET6 - uses: actions/upload-artifact@v4.3.1 - with: - name: RGB.NET-NET6 - path: bin/net6.0/RGB.NET.*.dll - if-no-files-found: error - - name: Upload a Build Artifact NET7 - uses: actions/upload-artifact@v4.3.1 - with: - name: RGB.NET-NET7 - path: bin/net7.0/RGB.NET.*.dll - if-no-files-found: error - name: Upload a Build Artifact NET8 uses: actions/upload-artifact@v4.3.1 with: diff --git a/.github/workflows/pr_verify.yml b/.github/workflows/pr_verify.yml index 539b7285..59a15444 100644 --- a/.github/workflows/pr_verify.yml +++ b/.github/workflows/pr_verify.yml @@ -16,8 +16,6 @@ jobs: with: dotnet-version: | 8.0.x - 7.0.x - 6.0.x - name: Restore dependencies run: dotnet restore - name: Build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 25047824..f8bae37a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,26 +21,12 @@ jobs: with: dotnet-version: | 8.0.x - 7.0.x - 6.0.x - name: Restore dependencies run: dotnet restore - name: Build run: dotnet build --no-restore --configuration Release /p:Version=${{ github.event.inputs.version }} - name: Test run: dotnet test --no-build --verbosity normal --configuration Release - - name: Upload a Build Artifact NET6 - uses: actions/upload-artifact@v4.3.1 - with: - name: RGB.NET-NET6 - path: bin/net6.0/RGB.NET.*.dll - if-no-files-found: error - - name: Upload a Build Artifact NET7 - uses: actions/upload-artifact@v4.3.1 - with: - name: RGB.NET-NET7 - path: bin/net7.0/RGB.NET.*.dll - if-no-files-found: error - name: Upload a Build Artifact NET8 uses: actions/upload-artifact@v4.3.1 with: