Skip to content

Commit 9346948

Browse files
authored
Merge pull request #397 from DarthAffe/HPPH
Updated build-files
2 parents 681adcb + 9a99769 commit 9346948

File tree

4 files changed

+2
-32
lines changed

4 files changed

+2
-32
lines changed

.github/workflows/ci.yml

-14
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,12 @@ jobs:
2525
with:
2626
dotnet-version: |
2727
8.0.x
28-
7.0.x
29-
6.0.x
3028
- name: Restore dependencies
3129
run: dotnet restore
3230
- name: Build
3331
run: dotnet build --no-restore --configuration Release /p:Version=${{ github.event.inputs.version }}-prerelease.${{ github.event.inputs.increment }}
3432
- name: Test
3533
run: dotnet test --no-build --verbosity normal --configuration Release
36-
- name: Upload a Build Artifact NET6
37-
uses: actions/[email protected]
38-
with:
39-
name: RGB.NET-NET6
40-
path: bin/net6.0/RGB.NET.*.dll
41-
if-no-files-found: error
42-
- name: Upload a Build Artifact NET7
43-
uses: actions/[email protected]
44-
with:
45-
name: RGB.NET-NET7
46-
path: bin/net7.0/RGB.NET.*.dll
47-
if-no-files-found: error
4834
- name: Upload a Build Artifact NET8
4935
uses: actions/[email protected]
5036
with:

.github/workflows/pr_verify.yml

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ jobs:
1616
with:
1717
dotnet-version: |
1818
8.0.x
19-
7.0.x
20-
6.0.x
2119
- name: Restore dependencies
2220
run: dotnet restore
2321
- name: Build

.github/workflows/release.yml

-14
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,12 @@ jobs:
2121
with:
2222
dotnet-version: |
2323
8.0.x
24-
7.0.x
25-
6.0.x
2624
- name: Restore dependencies
2725
run: dotnet restore
2826
- name: Build
2927
run: dotnet build --no-restore --configuration Release /p:Version=${{ github.event.inputs.version }}
3028
- name: Test
3129
run: dotnet test --no-build --verbosity normal --configuration Release
32-
- name: Upload a Build Artifact NET6
33-
uses: actions/[email protected]
34-
with:
35-
name: RGB.NET-NET6
36-
path: bin/net6.0/RGB.NET.*.dll
37-
if-no-files-found: error
38-
- name: Upload a Build Artifact NET7
39-
uses: actions/[email protected]
40-
with:
41-
name: RGB.NET-NET7
42-
path: bin/net7.0/RGB.NET.*.dll
43-
if-no-files-found: error
4430
- name: Upload a Build Artifact NET8
4531
uses: actions/[email protected]
4632
with:

RGB.NET.Presets/Extensions/HPPHExtensions.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ namespace RGB.NET.Presets.Extensions;
99
public static class HPPHExtensions
1010
{
1111
/// <summary>
12-
/// Converts the given HPPH <see cref="IColor"/> to a RGB.NET <see cref="Color"/>.
12+
/// Converts the given HPPH <see cref="IColor"/> to a RGB.NET <see cref="Core.Color"/>.
1313
/// </summary>
1414
/// <param name="color">The color to convert.</param>
1515
/// <returns>The converted color.</returns>
1616
public static Color ToColor(this IColor color) => new(color.A, color.R, color.G, color.B);
1717

1818
/// <summary>
19-
/// Converts the given HPPH <see cref="IColor"/> to a RGB.NET <see cref="Color"/>.
19+
/// Converts the given HPPH <see cref="IColor"/> to a RGB.NET <see cref="Core.Color"/>.
2020
/// </summary>
2121
/// <param name="color">The color to convert.</param>
2222
/// <typeparam name="T">The color-type of the HPPH color.</typeparam>

0 commit comments

Comments
 (0)