mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-31 17:53:32 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
7dc157fa34
@ -25,6 +25,14 @@ Artemis 1 is no longer supported and Artemis 2 is in active development. This en
|
|||||||
4. Open ```<central folder>\Artemis\src\Artemis.sln```
|
4. Open ```<central folder>\Artemis\src\Artemis.sln```
|
||||||
5. Restore Nuget packages
|
5. Restore Nuget packages
|
||||||
|
|
||||||
|
##### Alternatively in PowerShell
|
||||||
|
```powershell
|
||||||
|
git clone https://github.com/DarthAffe/RGB.NET -b Development RGB.NET
|
||||||
|
git clone https://github.com/Artemis-RGB/Artemis Artemis
|
||||||
|
dotnet build .\RGB.NET\RGB.NET.sln
|
||||||
|
dotnet build .\Artemis\src\Artemis.sln
|
||||||
|
```
|
||||||
|
|
||||||
For an up-to-date overview of what's currently being worked on, see the [Projects](https://github.com/SpoinkyNL/Artemis/projects) page
|
For an up-to-date overview of what's currently being worked on, see the [Projects](https://github.com/SpoinkyNL/Artemis/projects) page
|
||||||
|
|
||||||
## Plugin development
|
## Plugin development
|
||||||
|
|||||||
@ -35,6 +35,8 @@ namespace Artemis.Core
|
|||||||
|
|
||||||
internal TimedUpdateRegistration(PluginFeature feature, TimeSpan interval, Func<double, Task> asyncAction)
|
internal TimedUpdateRegistration(PluginFeature feature, TimeSpan interval, Func<double, Task> asyncAction)
|
||||||
{
|
{
|
||||||
|
_logger = CoreService.Kernel.Get<ILogger>();
|
||||||
|
|
||||||
Feature = feature;
|
Feature = feature;
|
||||||
Interval = interval;
|
Interval = interval;
|
||||||
AsyncAction = asyncAction;
|
AsyncAction = asyncAction;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user