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: 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.