mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2026-03-23 23:38:45 +00:00
Added .net10 build-target
This commit is contained in:
parent
bb59a9c1d9
commit
a413fa5646
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
@ -21,9 +21,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v4
|
uses: actions/setup-dotnet@v5
|
||||||
with:
|
with:
|
||||||
dotnet-version: |
|
dotnet-version: |
|
||||||
|
10.0.x
|
||||||
9.0.x
|
9.0.x
|
||||||
8.0.x
|
8.0.x
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
@ -32,6 +33,12 @@ jobs:
|
|||||||
run: dotnet build --no-restore --configuration Release /p:Version=${{ github.event.inputs.version }}-prerelease.${{ github.event.inputs.increment }}
|
run: dotnet build --no-restore --configuration Release /p:Version=${{ github.event.inputs.version }}-prerelease.${{ github.event.inputs.increment }}
|
||||||
- name: Test
|
- name: Test
|
||||||
run: dotnet test --no-build --verbosity normal --configuration Release
|
run: dotnet test --no-build --verbosity normal --configuration Release
|
||||||
|
- name: Upload a Build Artifact NET10
|
||||||
|
uses: actions/upload-artifact@v4.3.1
|
||||||
|
with:
|
||||||
|
name: RGB.NET-NET10
|
||||||
|
path: bin/net10.0/RGB.NET.*.dll
|
||||||
|
if-no-files-found: error
|
||||||
- name: Upload a Build Artifact NET9
|
- name: Upload a Build Artifact NET9
|
||||||
uses: actions/upload-artifact@v4.3.1
|
uses: actions/upload-artifact@v4.3.1
|
||||||
with:
|
with:
|
||||||
|
|||||||
3
.github/workflows/pr_verify.yml
vendored
3
.github/workflows/pr_verify.yml
vendored
@ -12,9 +12,10 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4.1.1
|
- uses: actions/checkout@v4.1.1
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v4
|
uses: actions/setup-dotnet@v5
|
||||||
with:
|
with:
|
||||||
dotnet-version: |
|
dotnet-version: |
|
||||||
|
10.0.x
|
||||||
9.0.x
|
9.0.x
|
||||||
8.0.x
|
8.0.x
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
|
|||||||
11
.github/workflows/release.yml
vendored
11
.github/workflows/release.yml
vendored
@ -17,9 +17,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Setup .NET
|
- name: Setup .NET
|
||||||
uses: actions/setup-dotnet@v4
|
uses: actions/setup-dotnet@v5
|
||||||
with:
|
with:
|
||||||
dotnet-version: |
|
dotnet-version: |
|
||||||
|
10.0.x
|
||||||
9.0.x
|
9.0.x
|
||||||
8.0.x
|
8.0.x
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
@ -28,6 +29,12 @@ jobs:
|
|||||||
run: dotnet build --no-restore --configuration Release /p:Version=${{ github.event.inputs.version }}
|
run: dotnet build --no-restore --configuration Release /p:Version=${{ github.event.inputs.version }}
|
||||||
- name: Test
|
- name: Test
|
||||||
run: dotnet test --no-build --verbosity normal --configuration Release
|
run: dotnet test --no-build --verbosity normal --configuration Release
|
||||||
|
- name: Upload a Build Artifact NET10
|
||||||
|
uses: actions/upload-artifact@v4.3.1
|
||||||
|
with:
|
||||||
|
name: RGB.NET-NET10
|
||||||
|
path: bin/net10.0/RGB.NET.*.dll
|
||||||
|
if-no-files-found: error
|
||||||
- name: Upload a Build Artifact NET9
|
- name: Upload a Build Artifact NET9
|
||||||
uses: actions/upload-artifact@v4.3.1
|
uses: actions/upload-artifact@v4.3.1
|
||||||
with:
|
with:
|
||||||
@ -51,6 +58,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
tag_name: v${{ github.event.inputs.version }}
|
tag_name: v${{ github.event.inputs.version }}
|
||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
files: bin/net9.0/RGB.NET.*.dll
|
files: bin/net10.0/RGB.NET.*.dll
|
||||||
- name: Nuget Push
|
- name: Nuget Push
|
||||||
run: dotnet nuget push **\*.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json
|
run: dotnet nuget push **\*.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Core</RootNamespace>
|
<RootNamespace>RGB.NET.Core</RootNamespace>
|
||||||
<Description>Core-Module of RGB.NET</Description>
|
<Description>Core-Module of RGB.NET</Description>
|
||||||
<Summary>Core-Module of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Core-Module of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.Asus</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.Asus</RootNamespace>
|
||||||
<Description>Asus-Device-Implementations of RGB.NET</Description>
|
<Description>Asus-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>Asus-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Asus-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.CoolerMaster</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.CoolerMaster</RootNamespace>
|
||||||
<Description>Cooler Master-Device-Implementations of RGB.NET</Description>
|
<Description>Cooler Master-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>Cooler Master-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Cooler Master-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.Corsair</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.Corsair</RootNamespace>
|
||||||
<Description>Corsair-Device-Implementations of RGB.NET</Description>
|
<Description>Corsair-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>Corsair-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Corsair-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.CorsairLegacy</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.CorsairLegacy</RootNamespace>
|
||||||
<Description>Corsair-Device-Implementations of RGB.NET using the old SDK</Description>
|
<Description>Corsair-Device-Implementations of RGB.NET using the old SDK</Description>
|
||||||
<Summary>Corsair-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Corsair-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.DMX</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.DMX</RootNamespace>
|
||||||
<Description>DMX-Device-Implementations of RGB.NET</Description>
|
<Description>DMX-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>DMX-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>DMX-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.Debug</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.Debug</RootNamespace>
|
||||||
<Description>Debug-Device-Implementations of RGB.NET</Description>
|
<Description>Debug-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>Debug-Device-Implementations of RGB.NET, a C# (.NET) library</Summary>
|
<Summary>Debug-Device-Implementations of RGB.NET, a C# (.NET) library</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.Logitech</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.Logitech</RootNamespace>
|
||||||
<Description>Logitech-Device-Implementations of RGB.NET</Description>
|
<Description>Logitech-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>Logitech-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Logitech-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.Msi</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.Msi</RootNamespace>
|
||||||
<Description>Msi-Device-Implementations of RGB.NET</Description>
|
<Description>Msi-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>Msi-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Msi-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.Novation</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.Novation</RootNamespace>
|
||||||
<Description>Novation-Device-Implementations of RGB.NET</Description>
|
<Description>Novation-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>Novation-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Novation-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.OpenRGB</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.OpenRGB</RootNamespace>
|
||||||
<Description>OpenRGB-Device-Implementations of RGB.NET</Description>
|
<Description>OpenRGB-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>OpenRGB-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>OpenRGB-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.PicoPi</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.PicoPi</RootNamespace>
|
||||||
<Description>PicoPi-Device-Implementations of RGB.NET</Description>
|
<Description>PicoPi-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>PicoPi-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>PicoPi-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.Razer</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.Razer</RootNamespace>
|
||||||
<Description>Razer-Device-Implementations of RGB.NET</Description>
|
<Description>Razer-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>Razer-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Razer-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.SteelSeries</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.SteelSeries</RootNamespace>
|
||||||
<Description>SteelSeries-Device-Implementations of RGB.NET</Description>
|
<Description>SteelSeries-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>SteelSeries-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>SteelSeries-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.WLED</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.WLED</RootNamespace>
|
||||||
<Description>WLED-Device-Implementations of RGB.NET</Description>
|
<Description>WLED-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>WLED-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>WLED-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2024</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2024</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.WS281X</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.WS281X</RootNamespace>
|
||||||
<Description>WS281X-Device-Implementations of RGB.NET</Description>
|
<Description>WS281X-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>WS281X-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>WS281X-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Devices.Wooting</RootNamespace>
|
<RootNamespace>RGB.NET.Devices.Wooting</RootNamespace>
|
||||||
<Description>Wooting-Device-Implementations of RGB.NET</Description>
|
<Description>Wooting-Device-Implementations of RGB.NET</Description>
|
||||||
<Summary>Wooting-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Wooting-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.HID</RootNamespace>
|
<RootNamespace>RGB.NET.HID</RootNamespace>
|
||||||
<Description>HID-Module of RGB.NET</Description>
|
<Description>HID-Module of RGB.NET</Description>
|
||||||
<Summary>HID-Module of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>HID-Module of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Layout</RootNamespace>
|
<RootNamespace>RGB.NET.Layout</RootNamespace>
|
||||||
<Description>Layout-Module of RGB.NET</Description>
|
<Description>Layout-Module of RGB.NET</Description>
|
||||||
<Summary>Layout-Module of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Layout-Module of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
@ -15,8 +15,8 @@
|
|||||||
<RootNamespace>RGB.NET.Presets</RootNamespace>
|
<RootNamespace>RGB.NET.Presets</RootNamespace>
|
||||||
<Description>Presets-Presets of RGB.NET</Description>
|
<Description>Presets-Presets of RGB.NET</Description>
|
||||||
<Summary>Presets for RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
<Summary>Presets for RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
||||||
<Copyright>Copyright © Darth Affe 2023</Copyright>
|
<Copyright>Copyright © Darth Affe 2026</Copyright>
|
||||||
<PackageCopyright>Copyright © Darth Affe 2023</PackageCopyright>
|
<PackageCopyright>Copyright © Darth Affe 2026</PackageCopyright>
|
||||||
<PackageIcon>icon.png</PackageIcon>
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net9.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net9.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user