Fix net20, net35, and net40

This commit is contained in:
Matt Nadareski
2024-05-21 21:11:04 -04:00
parent 3ba4db8f0a
commit 9cffc80982
2 changed files with 2 additions and 1 deletions

View File

@@ -38,6 +38,7 @@
- Remove Chime
- Move string contents for UI to view model
- Remove unused byte array constant
- Fix net20, net35, and net40
### 3.1.9a (2024-05-21)

View File

@@ -1917,7 +1917,7 @@ namespace MPF.Core.UI.ViewModels
/// Handler for Result ProgressChanged event
/// </summary>
#if NET20 || NET35 || NET40
private void ProgressUpdated(object? sender, BaseExecutionContext.StringEventArgs value)
private void ProgressUpdated(object? sender, Core.ExecutionContexts.BaseExecutionContext.StringEventArgs value)
#else
private void ProgressUpdated(object? sender, string value)
#endif