WIP
This commit is contained in:
@@ -20,4 +20,4 @@ public class ConfigurationWriter<TConfiguration>(IConfigurationSource<TConfigura
|
||||
public void Write(object value) => source.Set(value);
|
||||
|
||||
public void Write(TConfiguration value) => source.Set(value);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public interface IDispatcherTimer
|
||||
{
|
||||
void Start();
|
||||
|
||||
void Stop();
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public interface IDispatcherTimerFactory
|
||||
{
|
||||
IDispatcherTimer Create(Action actionDelegate, TimeSpan interval);
|
||||
}
|
||||
@@ -3,6 +3,7 @@
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<Platforms>AnyCPU;x64;x86</Platforms>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
|
||||
|
||||
Reference in New Issue
Block a user