Compare commits
1 Commits
10.12.27.0
...
v10
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
44c3c4b30a |
@@ -65,6 +65,7 @@ public static class DictionaryExtensions
|
||||
this IDictionary<TKey, TValue> dictionary,
|
||||
IEnumerable<TKey> keys)
|
||||
{
|
||||
if(keys==null) yield break;
|
||||
foreach (var key in keys)
|
||||
{
|
||||
if (dictionary.TryGetValue(key, out var value))
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<Project>
|
||||
|
||||
<PropertyGroup>
|
||||
<PluginVersion>10.12.27</PluginVersion>
|
||||
<ProPluginVersion>10.12.27</ProPluginVersion>
|
||||
<DefaultVersion>10.12.27</DefaultVersion>
|
||||
<PluginVersion>10.12.28</PluginVersion>
|
||||
<ProPluginVersion>10.12.28</ProPluginVersion>
|
||||
<DefaultVersion>10.12.28</DefaultVersion>
|
||||
<AuthenticationVersion>10.11.7</AuthenticationVersion>
|
||||
<SourceGeneratorVersion>10.11.7</SourceGeneratorVersion>
|
||||
<NET8Version>8.0.21</NET8Version>
|
||||
|
||||
@@ -189,7 +189,7 @@ public class VariableRuntimeService : IVariableRuntimeService
|
||||
{
|
||||
// await WaitLock.WaitAsync().ConfigureAwait(false);
|
||||
|
||||
var result = await GlobalData.VariableService.DeleteVariableAsync(null).ConfigureAwait(false);
|
||||
var result = await GlobalData.VariableService.DeleteVariableAsync(GlobalData.IdVariables.Keys).ConfigureAwait(false);
|
||||
|
||||
ConcurrentHashSet<IDriver> changedDriver = new();
|
||||
var variableIds = GlobalData.IdVariables.Select(a => a.Key).ToHashSet();
|
||||
|
||||
Reference in New Issue
Block a user