diff --git a/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net7.csproj b/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net7.csproj
index 504284bcd5..40142b01aa 100644
--- a/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net7.csproj
+++ b/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net7.csproj
@@ -12,8 +12,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net8.csproj b/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net8.csproj
index 656d4227eb..3f9d291f25 100644
--- a/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net8.csproj
+++ b/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net8.csproj
@@ -12,8 +12,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/Android/RTSP Client/RTSP Client net7.csproj b/Media Blocks SDK/Android/RTSP Client/RTSP Client net7.csproj
index f9025fa148..310b4b11a1 100644
--- a/Media Blocks SDK/Android/RTSP Client/RTSP Client net7.csproj
+++ b/Media Blocks SDK/Android/RTSP Client/RTSP Client net7.csproj
@@ -12,8 +12,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/Android/RTSP Client/RTSP Client net8.csproj b/Media Blocks SDK/Android/RTSP Client/RTSP Client net8.csproj
index ff80e1fa71..09af4abbfb 100644
--- a/Media Blocks SDK/Android/RTSP Client/RTSP Client net8.csproj
+++ b/Media Blocks SDK/Android/RTSP Client/RTSP Client net8.csproj
@@ -12,8 +12,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/Android/Simple Video Capture/Simple Video Capture net7.csproj b/Media Blocks SDK/Android/Simple Video Capture/Simple Video Capture net7.csproj
index ad1ad4ba24..0b7cbead61 100644
--- a/Media Blocks SDK/Android/Simple Video Capture/Simple Video Capture net7.csproj
+++ b/Media Blocks SDK/Android/Simple Video Capture/Simple Video Capture net7.csproj
@@ -12,8 +12,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/Android/Simple Video Capture/Simple Video Capture net8.csproj b/Media Blocks SDK/Android/Simple Video Capture/Simple Video Capture net8.csproj
index 24a1280920..3b327db4aa 100644
--- a/Media Blocks SDK/Android/Simple Video Capture/Simple Video Capture net8.csproj
+++ b/Media Blocks SDK/Android/Simple Video Capture/Simple Video Capture net8.csproj
@@ -12,8 +12,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/Avalonia/Simple Player/SimplePlayerAvalonia/SimplePlayerAvalonia.csproj b/Media Blocks SDK/Avalonia/Simple Player/SimplePlayerAvalonia/SimplePlayerAvalonia.csproj
index d7635f6fd2..e48cd20efb 100644
--- a/Media Blocks SDK/Avalonia/Simple Player/SimplePlayerAvalonia/SimplePlayerAvalonia.csproj
+++ b/Media Blocks SDK/Avalonia/Simple Player/SimplePlayerAvalonia/SimplePlayerAvalonia.csproj
@@ -25,7 +25,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/Console/Media Info CLI/Media Info CLI.csproj b/Media Blocks SDK/Console/Media Info CLI/Media Info CLI.csproj
index 2c923b2fbf..ee58a33c0c 100644
--- a/Media Blocks SDK/Console/Media Info CLI/Media Info CLI.csproj
+++ b/Media Blocks SDK/Console/Media Info CLI/Media Info CLI.csproj
@@ -23,6 +23,6 @@
None
-
+
diff --git a/Media Blocks SDK/Console/RTSPView/RTSPView.csproj b/Media Blocks SDK/Console/RTSPView/RTSPView.csproj
index e2db9f042d..1c97c3b579 100644
--- a/Media Blocks SDK/Console/RTSPView/RTSPView.csproj
+++ b/Media Blocks SDK/Console/RTSPView/RTSPView.csproj
@@ -9,7 +9,7 @@
com.visioforge.rtspviewcli
-
+
diff --git a/Media Blocks SDK/Console/RTSPViewCV/RTSPViewCV.csproj b/Media Blocks SDK/Console/RTSPViewCV/RTSPViewCV.csproj
index 2ba796ec98..3f32eca1c7 100644
--- a/Media Blocks SDK/Console/RTSPViewCV/RTSPViewCV.csproj
+++ b/Media Blocks SDK/Console/RTSPViewCV/RTSPViewCV.csproj
@@ -9,8 +9,8 @@
com.visioforge.rtspviewcvcli
-
-
+
+
diff --git a/Media Blocks SDK/MAUI/SimpleCapture/MainPage.xaml.cs b/Media Blocks SDK/MAUI/SimpleCapture/MainPage.xaml.cs
index 0356a637b5..ef4c8712b2 100644
--- a/Media Blocks SDK/MAUI/SimpleCapture/MainPage.xaml.cs
+++ b/Media Blocks SDK/MAUI/SimpleCapture/MainPage.xaml.cs
@@ -84,7 +84,7 @@ private async void MainPage_Loaded(object sender, EventArgs e)
await RequestMicPermissionAsync();
#endif
- _pipeline = new MediaBlocksPipeline();
+ _pipeline = new MediaBlocksPipeline(live: true);
_videoRenderer = new VideoRendererBlock(_pipeline, videoView);
_pipeline.OnError += Core_OnError;
@@ -159,6 +159,8 @@ private async void Window_Destroying(object sender, EventArgs e)
_pipeline?.Dispose();
_pipeline = null;
}
+
+ VisioForgeX.DestroySDK();
}
private void Core_OnError(object sender, VisioForge.Core.Types.Events.ErrorsEventArgs e)
diff --git a/Media Blocks SDK/MAUI/SimpleCapture/Platforms/Android/AndroidManifest.xml b/Media Blocks SDK/MAUI/SimpleCapture/Platforms/Android/AndroidManifest.xml
index 6112c7caca..913bc49325 100644
--- a/Media Blocks SDK/MAUI/SimpleCapture/Platforms/Android/AndroidManifest.xml
+++ b/Media Blocks SDK/MAUI/SimpleCapture/Platforms/Android/AndroidManifest.xml
@@ -1,5 +1,5 @@
-
+
diff --git a/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB.csproj b/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB.csproj
index 074efb856e..dadbf4b50a 100644
--- a/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB.csproj
+++ b/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB.csproj
@@ -77,8 +77,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/App.xaml b/Media Blocks SDK/MAUI/SimplePlayer/App.xaml
new file mode 100644
index 0000000000..12654ddbc3
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/App.xaml.cs b/Media Blocks SDK/MAUI/SimplePlayer/App.xaml.cs
new file mode 100644
index 0000000000..7030230428
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace Simple_Player_MB_MAUI
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/AppShell.xaml b/Media Blocks SDK/MAUI/SimplePlayer/AppShell.xaml
new file mode 100644
index 0000000000..31bd39d2ec
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/AppShell.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/AppShell.xaml.cs b/Media Blocks SDK/MAUI/SimplePlayer/AppShell.xaml.cs
new file mode 100644
index 0000000000..294918be4d
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace Simple_Player_MB_MAUI
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/MainPage.xaml b/Media Blocks SDK/MAUI/SimplePlayer/MainPage.xaml
new file mode 100644
index 0000000000..9920ec9791
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/MainPage.xaml
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/MainPage.xaml.cs b/Media Blocks SDK/MAUI/SimplePlayer/MainPage.xaml.cs
new file mode 100644
index 0000000000..d9077312c9
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/MainPage.xaml.cs
@@ -0,0 +1,289 @@
+using System.Diagnostics;
+using System.Globalization;
+using VisioForge.Core.Types;
+using VisioForge.Core.Types.X.Sources;
+using VisioForge.Core;
+using VisioForge.Core.MediaBlocks;
+using VisioForge.Core.MediaBlocks.Sources;
+using VisioForge.Core.MediaBlocks.VideoRendering;
+using VisioForge.Core.MediaBlocks.AudioRendering;
+
+namespace Simple_Player_MB_MAUI
+{
+ public partial class MainPage : ContentPage
+ {
+ private MediaBlocksPipeline _pipeline;
+
+ private UniversalSourceBlock _source;
+
+ private MediaBlock _videoRenderer;
+
+ private AudioRendererBlock _audioRenderer;
+
+ private string _filename;
+
+ ///
+ /// The seeking flag.
+ ///
+ private volatile bool _isTimerUpdate;
+
+#if __ANDROID__
+ private const string DEFAULT_FILENAME = "http://test.visioforge.com/video.mp4";
+#else
+ private const string DEFAULT_FILENAME = @"c:\samples\!video.mp4";
+#endif
+
+ ///
+ /// The position timer.
+ ///
+ private System.Timers.Timer _tmPosition = new System.Timers.Timer(500);
+
+ public MainPage()
+ {
+ InitializeComponent();
+
+ Loaded += MainPage_Loaded;
+
+ _tmPosition.Elapsed += tmPosition_Elapsed;
+ }
+
+ private async Task CreateEngineAsync()
+ {
+ if (_pipeline != null)
+ {
+ await _pipeline.StopAsync();
+ await _pipeline.DisposeAsync();
+ }
+
+ _pipeline = new MediaBlocksPipeline(false);
+
+ _pipeline.OnError += _player_OnError;
+ _pipeline.OnStart += _player_OnStart;
+
+ _audioRenderer = new AudioRendererBlock();
+
+ _source = new UniversalSourceBlock(await UniversalSourceSettings.CreateAsync(_filename));
+ _videoRenderer = new VideoRendererBlock(_pipeline, videoView);
+ _audioRenderer = new AudioRendererBlock();
+
+ _pipeline.Connect(_source.VideoOutput, _videoRenderer.Input);
+ _pipeline.Connect(_source.AudioOutput, _audioRenderer.Input);
+ }
+
+ private void MainPage_Loaded(object sender, EventArgs e)
+ {
+ Window.Destroying += Window_Destroying;
+ }
+
+ private void _player_OnStart(object sender, EventArgs e)
+ {
+ try
+ {
+ MainThread.BeginInvokeOnMainThread(async () =>
+ {
+ if (_pipeline == null)
+ {
+ return;
+ }
+
+ slSeeking.Maximum = (await _pipeline.DurationAsync()).TotalMilliseconds;
+ });
+ }
+ catch (Exception exception)
+ {
+ System.Diagnostics.Debug.WriteLine(exception);
+ }
+ }
+
+ private async void Window_Destroying(object sender, EventArgs e)
+ {
+ if (_pipeline != null)
+ {
+ _pipeline.OnError -= _player_OnError;
+ await _pipeline.StopAsync();
+
+ _pipeline.Dispose();
+ _pipeline = null;
+ }
+
+ VisioForgeX.DestroySDK();
+ }
+
+ private async void OnStop(object sender, EventArgs e)
+ {
+ if (_pipeline != null)
+ {
+ _pipeline.OnError -= _player_OnError;
+ await _pipeline.StopAsync();
+ }
+ }
+
+ private void _player_OnError(object sender, VisioForge.Core.Types.Events.ErrorsEventArgs e)
+ {
+ Debug.WriteLine(e.Message);
+ }
+
+ private async Task StopAllAsync()
+ {
+ if (_pipeline == null)
+ {
+ return;
+ }
+
+ _tmPosition.Stop();
+
+ if (_pipeline != null)
+ {
+ await _pipeline.StopAsync();
+ }
+ }
+
+ ///
+ /// Handles the Elapsed event of the tmPosition control.
+ ///
+ /// The source of the event.
+ /// The instance containing the event data.
+ private async void tmPosition_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
+ {
+ if (_pipeline == null)
+ {
+ return;
+ }
+
+ var pos = await _pipeline.Position_GetAsync();
+ var progress = (int)pos.TotalMilliseconds;
+
+ try
+ {
+ MainThread.BeginInvokeOnMainThread(async () =>
+ {
+ if (_pipeline == null)
+ {
+ return;
+ }
+
+ _isTimerUpdate = true;
+
+ if (progress > slSeeking.Maximum)
+ {
+ slSeeking.Value = slSeeking.Maximum;
+ }
+ else
+ {
+ slSeeking.Value = progress;
+ }
+
+ // This is where the received data is passed
+ lbPosition.Text = $"{pos.ToString(@"hh\:mm\:ss", CultureInfo.InvariantCulture)}";
+ lbDuration.Text = $"{(await _pipeline.DurationAsync()).ToString(@"hh\:mm\:ss", CultureInfo.InvariantCulture)}";
+
+ _isTimerUpdate = false;
+ });
+ }
+ catch (Exception exception)
+ {
+ System.Diagnostics.Debug.WriteLine(exception);
+ }
+ }
+
+ private async void slSeeking_ValueChanged(object sender, ValueChangedEventArgs e)
+ {
+ if (!_isTimerUpdate && _pipeline != null)
+ {
+ await _pipeline.Position_SetAsync(TimeSpan.FromMilliseconds(e.NewValue));
+ }
+ }
+
+ private void slVolume_ValueChanged(object sender, ValueChangedEventArgs e)
+ {
+ if (_pipeline != null)
+ {
+ _audioRenderer.Volume = e.NewValue / 100.0;
+ }
+ }
+
+ private async void btOpen_Clicked(object sender, EventArgs e)
+ {
+ await StopAllAsync();
+
+ btPlayPause.Text = "PLAY";
+
+ try
+ {
+ var result = await FilePicker.Default.PickAsync();
+ if (result != null)
+ {
+ _filename = result.FullPath;
+ lbFilename.Text = _filename;
+ lbFilename.IsVisible = true;
+ }
+ }
+ catch (Exception ex)
+ {
+ // The user canceled or something went wrong
+ }
+ }
+
+ private async void btPlayPause_Clicked(object sender, EventArgs e)
+ {
+ if (string.IsNullOrEmpty(_filename))
+ {
+ return;
+ }
+
+ // START
+ if (_pipeline == null || _pipeline.State == PlaybackState.Free)
+ {
+ await CreateEngineAsync();
+
+ await _pipeline.StartAsync();
+
+ _tmPosition.Start();
+
+ btPlayPause.Text = "PAUSE";
+ }
+ else if (_pipeline.State == PlaybackState.Play)
+ {
+ await _pipeline.PauseAsync();
+
+ btPlayPause.Text = "PLAY";
+ }
+ else if (_pipeline.State == PlaybackState.Pause)
+ {
+ await _pipeline.ResumeAsync();
+
+ btPlayPause.Text = "PAUSE";
+ }
+ }
+
+ private async void btSpeed_Clicked(object sender, EventArgs e)
+ {
+ if (btSpeed.Text == "SPEED: 1X")
+ {
+ // set 2x
+ btSpeed.Text = "SPEED: 2X";
+ await _pipeline.Rate_SetAsync(2.0);
+ }
+ else if (btSpeed.Text == "SPEED: 2X")
+ {
+ // set 0.5x
+ btSpeed.Text = "SPEED: 0.5X";
+ await _pipeline.Rate_SetAsync(0.5);
+ }
+ else if (btSpeed.Text == "SPEED: 0.5X")
+ {
+ // set 1x
+ btSpeed.Text = "SPEED: 1X";
+ await _pipeline.Rate_SetAsync(1.0);
+ }
+ }
+
+ private async void btStop_Clicked(object sender, EventArgs e)
+ {
+ await StopAllAsync();
+
+ btSpeed.Text = "SPEED: 1X";
+ btPlayPause.Text = "PLAY";
+ }
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/MauiProgram.cs b/Media Blocks SDK/MAUI/SimplePlayer/MauiProgram.cs
new file mode 100644
index 0000000000..d8ada0f315
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/MauiProgram.cs
@@ -0,0 +1,24 @@
+using SkiaSharp.Views.Maui.Controls.Hosting;
+using VisioForge.Core.UI.MAUI;
+
+namespace Simple_Player_MB_MAUI
+{
+ public static class MauiProgram
+ {
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .UseSkiaSharp()
+ .ConfigureMauiHandlers(handlers => handlers.AddVisioForgeHandlers())
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+ return builder.Build();
+ }
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/AndroidManifest.xml b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000000..c587380af7
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/MainActivity.cs b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000000..aed39cdd42
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace Simple_Player_MB_MAUI
+{
+ [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+ public class MainActivity : MauiAppCompatActivity
+ {
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/MainApplication.cs b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000000..71899b3b30
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace Simple_Player_MB_MAUI
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/Resources/values/colors.xml b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000000..c04d7492ab
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/MacCatalyst/AppDelegate.cs b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000000..455d5fc9ff
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace Simple_Player_MB_MAUI
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/MacCatalyst/Info.plist b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000000..c96dd0a225
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,30 @@
+
+
+
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/MacCatalyst/Program.cs b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000000..ecd376e533
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Simple_Player_MB_MAUI
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Tizen/Main.cs b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000000..547e0ede94
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace Simple_Player_MB_MAUI
+{
+ internal class Program : MauiApplication
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Tizen/tizen-manifest.xml b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000000..add0d9556a
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ appicon.xhigh.png
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/App.xaml b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/App.xaml
new file mode 100644
index 0000000000..0206b7dc7c
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/App.xaml.cs b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000000..17da8fa97e
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,24 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace Simple_Player_MB_MAUI.WinUI
+{
+ ///
+ /// Provides application-specific behavior to supplement the default Application class.
+ ///
+ public partial class App : MauiWinUIApplication
+ {
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/Package.appxmanifest b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000000..2bcb11edf7
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/app.manifest b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/app.manifest
new file mode 100644
index 0000000000..1736c42eda
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/iOS/AppDelegate.cs b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000000..455d5fc9ff
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace Simple_Player_MB_MAUI
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/iOS/Info.plist b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/iOS/Info.plist
new file mode 100644
index 0000000000..0004a4fdee
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Platforms/iOS/Program.cs b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/iOS/Program.cs
new file mode 100644
index 0000000000..ecd376e533
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Simple_Player_MB_MAUI
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Properties/launchSettings.json b/Media Blocks SDK/MAUI/SimplePlayer/Properties/launchSettings.json
new file mode 100644
index 0000000000..edf8aadcc8
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Resources/AppIcon/appicon.svg b/Media Blocks SDK/MAUI/SimplePlayer/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000000..9d63b6513a
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Resources/AppIcon/appiconfg.svg b/Media Blocks SDK/MAUI/SimplePlayer/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000000..21dfb25f18
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Resources/Default.vfskin b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Default.vfskin
new file mode 100644
index 0000000000..ceda3c4402
Binary files /dev/null and b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Default.vfskin differ
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Resources/Fonts/OpenSans-Regular.ttf b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000000..36b4b9bc4a
Binary files /dev/null and b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Resources/Fonts/OpenSans-Semibold.ttf b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000000..e7f1e996ed
Binary files /dev/null and b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Resources/Images/dotnet_bot.svg b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Images/dotnet_bot.svg
new file mode 100644
index 0000000000..abfaff26a8
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Resources/Raw/AboutAssets.txt b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000000..15d6244845
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Resources/Splash/splash.svg b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Splash/splash.svg
new file mode 100644
index 0000000000..21dfb25f18
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Resources/Styles/Colors.xaml b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000000..245758ba17
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Styles/Colors.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+ #512BD4
+ #DFD8F7
+ #2B0B98
+ White
+ Black
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #F7B548
+ #FFD590
+ #FFE5B9
+ #28C2D1
+ #7BDDEF
+ #C3F2F4
+ #3E8EED
+ #72ACF1
+ #A7CBF6
+
+
\ No newline at end of file
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/Resources/Styles/Styles.xaml b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000000..1ec9d55feb
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/Resources/Styles/Styles.xaml
@@ -0,0 +1,384 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Media Blocks SDK/MAUI/SimplePlayer/readme.md b/Media Blocks SDK/MAUI/SimplePlayer/readme.md
new file mode 100644
index 0000000000..4157dff52e
--- /dev/null
+++ b/Media Blocks SDK/MAUI/SimplePlayer/readme.md
@@ -0,0 +1,18 @@
+# Media Blocks SDK .Net - MAUI Simple Player Demo
+
+Simple Player Demo is a media player application that uses the Media Blocks SDK .Net to play media files in MAUI applications. It is a good starting point for building your media player application.
+
+## Features
+
+- Play media files
+- Play network streams
+- Seeking
+
+## Supported frameworks
+
+- .Net 6
+- .Net 7
+
+---
+
+[Media Blocks SDK .Net product page](https://www.visioforge.com/media-blocks-sdk)
diff --git a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net472.csproj
index 6374ee9751..38ba809073 100644
--- a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net472.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net5.csproj
index cc7135c92c..6426715375 100644
--- a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net5.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net6.csproj
index 033eaab10b..95a13597d4 100644
--- a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net6.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net7.csproj
index dca9d0fded..5303014a11 100644
--- a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net7.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net8.csproj
index eee8d03c65..8c81cb40e7 100644
--- a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo net8.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo netcore31.csproj
index 83a4b2fc8a..2ecb5c5e2c 100644
--- a/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Decklink Demo/Decklink MB Demo netcore31.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net472.csproj b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net472.csproj
index 69ea305225..3bc63a0621 100644
--- a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net472.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net5.csproj b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net5.csproj
index 4e2e832693..d02da62660 100644
--- a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net5.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net6.csproj b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net6.csproj
index 2518103fd0..bdb0ff1ee7 100644
--- a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net6.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net7.csproj b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net7.csproj
index 7f97fcb33f..5195e15e06 100644
--- a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net7.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net8.csproj b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net8.csproj
index 309ff02a09..315e5e74b9 100644
--- a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live net8.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live netcore31.csproj
index 8c2ba35b50..ebc31bb342 100644
--- a/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Face Detector Live/Face Detector Live netcore31.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net472.csproj
index b46ddf621d..5919c3ceb2 100644
--- a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net472.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net5.csproj
index 06f74fcfd0..9c7a3729ad 100644
--- a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net5.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net6.csproj
index 90bf18442c..6c71487111 100644
--- a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net6.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net7.csproj
index a349e064fa..ddd1c5ea02 100644
--- a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net7.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net8.csproj
index b5bd131c67..a09e90a88a 100644
--- a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo net8.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo netcore31.csproj
index 85e471e27c..3ead095ddc 100644
--- a/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/HTTP MJPEG Source Demo/HTTP MJPEG Source Demo netcore31.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net472.csproj
index f6d5f1a0e4..631ee1e44c 100644
--- a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net472.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net5.csproj
index 9eb8582dd0..477f36bf92 100644
--- a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net5.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net6.csproj
index 6844142991..131d7630ab 100644
--- a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net6.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net7.csproj
index 5f039dd312..2b278d1166 100644
--- a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net7.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net8.csproj
index 4868280bf3..6d60384838 100644
--- a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo net8.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo netcore31.csproj
index a0d49b5884..963b2f7ec4 100644
--- a/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/KLV Demo/KLV Demo netcore31.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net472.csproj
index 4e4636f8e1..496724f91c 100644
--- a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net472.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net5.csproj
index 546f83e8a5..dc396a2396 100644
--- a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net5.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net6.csproj
index 3d5932c61f..f49e62ca06 100644
--- a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net6.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net7.csproj
index c61bc4ee70..78fd34bc31 100644
--- a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net7.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net8.csproj
index 6fdd8c1cc0..1bc341a520 100644
--- a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo net8.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo netcore31.csproj
index 2295068b54..c68b8767fc 100644
--- a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/Live Video Compositor Demo netcore31.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/MainWindow.xaml.cs b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/MainWindow.xaml.cs
index f4577d3704..0e1956c12c 100644
--- a/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/MainWindow.xaml.cs
+++ b/Media Blocks SDK/WPF/CSharp/Live Video Compositor Demo/MainWindow.xaml.cs
@@ -26,12 +26,6 @@
using VisioForge.Core.Types.X.Output;
using VisioForge.Core.Types.X;
using VisioForge.Core.Helpers;
-using VisioForge.Core.MediaBlocks.Bridge;
-using VisioForge.Core.MediaBlocks.VideoRendering;
-using VisioForge.Core.MediaBlocks.VideoProcessing;
-using VisioForge.Core.Types.X.VideoEffects;
-using VisioForge.Core.MediaBlocks.Special;
-using System.Diagnostics;
namespace Live_Video_Compositor_Demo
{
@@ -145,21 +139,7 @@ private async Task AddFileSourceAsync()
var rect = new Rect(Convert.ToInt32(edRectLeft.Text), Convert.ToInt32(edRectTop.Text),
Convert.ToInt32(edRectRight.Text), Convert.ToInt32(edRectBottom.Text));
var settings = await UniversalSourceSettings.CreateAsync(filename);
- var info = settings.GetInfo();
-
- VideoFrameInfoX videoInfo = null;
- if (info.VideoStreams.Count > 0)
- {
- videoInfo = new VideoFrameInfoX(info.VideoStreams[0].Width, info.VideoStreams[0].Height, info.VideoStreams[0].FrameRate);
- }
-
- AudioInfoX audioInfo = null;
- if (info.AudioStreams.Count > 0)
- {
- audioInfo = new AudioInfoX(AudioFormatX.S16LE, info.AudioStreams[0].SampleRate, info.AudioStreams[0].Channels);
- }
-
- var src = new LVCVideoAudioInput(name, _compositor, new UniversalSourceBlock(settings), videoInfo, audioInfo, rect, autostart: true, live: false);
+ var src = new LVCVideoAudioInput(name, _compositor, new UniversalSourceBlock(settings), settings.GetInfo().GetVideoInfo(), settings.GetInfo().GetAudioInfo(), rect, autostart: true, live: false);
if (await _compositor.Input_AddAsync(src))
{
diff --git a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net472.csproj
index cfb4cd602d..c7593dd83f 100644
--- a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net472.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net5.csproj
index b0f07ee09d..82f88874d8 100644
--- a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net5.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net6.csproj
index 815726fb77..fbd306e19a 100644
--- a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net6.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net7.csproj
index 3630e773dc..389c8b9e12 100644
--- a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net7.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net8.csproj
index 102f7f1884..686e00fbe4 100644
--- a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net8.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo netcore31.csproj
index fccb67f77d..2176ca3306 100644
--- a/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo netcore31.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net472.csproj
index 49ebcc7cd1..fb1415e15f 100644
--- a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net472.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net5.csproj
index a23c6ec057..d662b53ad2 100644
--- a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net5.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net6.csproj
index 552aa7a0f4..82874f9d72 100644
--- a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net6.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net7.csproj
index 09051aab30..428154b50a 100644
--- a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net7.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net8.csproj
index 82dd367880..e47a2cd031 100644
--- a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo net8.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo netcore31.csproj
index 168ab5cb30..474d05700f 100644
--- a/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo netcore31.csproj
@@ -10,9 +10,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net472.csproj b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net472.csproj
index 916a47ac40..2f7cca50ae 100644
--- a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net472.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net5.csproj b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net5.csproj
index cd014ad22d..8aa0431eb1 100644
--- a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net5.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net6.csproj b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net6.csproj
index 96b2d3b11c..9c54dc9fbf 100644
--- a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net6.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net7.csproj b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net7.csproj
index 0123536546..0ee6cd28e3 100644
--- a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net7.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net8.csproj b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net8.csproj
index 6c532da199..906f3a5370 100644
--- a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF net8.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF netcore31.csproj
index a2b704aabc..fe5b664bd0 100644
--- a/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Screen Capture/Screen Capture MB WPF netcore31.csproj
@@ -11,9 +11,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net472.csproj b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net472.csproj
index f7b0916fa2..30c265950a 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net472.csproj
@@ -15,9 +15,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net5.csproj b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net5.csproj
index 252625622d..7a328f517d 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net5.csproj
@@ -15,9 +15,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net6.csproj b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net6.csproj
index 51972186ae..79fb7c2df9 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net6.csproj
@@ -15,9 +15,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net7.csproj b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net7.csproj
index 724543336d..9a0f072f09 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net7.csproj
@@ -15,9 +15,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net8.csproj b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net8.csproj
index fb947b79e3..60945cbd88 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF net8.csproj
@@ -15,9 +15,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF netcore31.csproj
index dbed86294c..a38e43df6e 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Capture Demo/Simple Video Capture Demo MB WPF netcore31.csproj
@@ -16,9 +16,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net472.csproj
index 9d1b35bd4d..45ab215e1a 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net472.csproj
@@ -22,9 +22,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net5.csproj
index 4a25382382..d9ee40467e 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net5.csproj
@@ -22,9 +22,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net6.csproj
index f09df67ce3..265de52801 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net6.csproj
@@ -22,9 +22,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net7.csproj
index 511e971326..74d76b4a11 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net7.csproj
@@ -22,9 +22,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net8.csproj
index 1ccef865d6..c7376bca35 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo net8.csproj
@@ -22,9 +22,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo netcore31.csproj
index 77dd2e6c53..fbf5393b95 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Core Demo/Simple Player Core Demo netcore31.csproj
@@ -22,9 +22,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net472.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net472.csproj
index b30f06e57f..0d6c39429d 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net472.csproj
@@ -22,9 +22,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net5.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net5.csproj
index d10267cb56..753af3efeb 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net5.csproj
@@ -16,9 +16,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net6.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net6.csproj
index 4d44188cfd..c2b4fa470a 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net6.csproj
@@ -22,9 +22,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net7.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net7.csproj
index 9b258bb7f6..3d770ef506 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net7.csproj
@@ -22,9 +22,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net8.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net8.csproj
index 3d8c352b03..d1181ed919 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF net8.csproj
@@ -22,9 +22,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF netcore31.csproj
index b80f78544a..ce438d2833 100644
--- a/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Simple Player Demo WPF/Simple Player Demo MB WPF netcore31.csproj
@@ -22,9 +22,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net472.csproj b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net472.csproj
index 696db8ef01..61188cc533 100644
--- a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net472.csproj
@@ -16,9 +16,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net5.csproj b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net5.csproj
index abbcdd3014..182b551f48 100644
--- a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net5.csproj
@@ -16,9 +16,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net6.csproj b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net6.csproj
index 8f26b3890c..2c5de2e389 100644
--- a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net6.csproj
@@ -16,9 +16,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net7.csproj b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net7.csproj
index 616ee67944..c5258b067a 100644
--- a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net7.csproj
@@ -16,9 +16,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net8.csproj b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net8.csproj
index 838f575a58..a0e569f49b 100644
--- a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB net8.csproj
@@ -16,9 +16,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB netcore31.csproj
index c85d4d0e49..f88dc09e76 100644
--- a/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Social Networks Streamer Demo/Social Networks Streamer Demo MB netcore31.csproj
@@ -16,9 +16,9 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net472.csproj
index 1301f16e5f..086f4cecc9 100644
--- a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net472.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net5.csproj
index fe891974d0..b265c92add 100644
--- a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net5.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net6.csproj
index 68f437d4e5..4dc288879c 100644
--- a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net6.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net7.csproj
index b92aa7b526..2d4a11a58b 100644
--- a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net7.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net8.csproj
index 81449d5055..aeecc7184e 100644
--- a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo net8.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo netcore31.csproj
index c6eefffc26..0e432f0087 100644
--- a/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/VNC Source Demo/VNC Source Demo netcore31.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net472.csproj
index f4cf52f5aa..6df87de60d 100644
--- a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net472.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net472.csproj
@@ -18,8 +18,8 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net5.csproj
index fb08c5908e..a03c50d399 100644
--- a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net5.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net5.csproj
@@ -18,8 +18,8 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net6.csproj
index 397a3d892d..9933666715 100644
--- a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net6.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net6.csproj
@@ -18,8 +18,8 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net7.csproj
index f5399ca3cd..8f4b17dfd3 100644
--- a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net7.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net7.csproj
@@ -18,8 +18,8 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net8.csproj
index 1e69752942..498a1510a3 100644
--- a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net8.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net8.csproj
@@ -18,8 +18,8 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo netcore31.csproj
index e926a34f81..35097f42c1 100644
--- a/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo netcore31.csproj
+++ b/Media Blocks SDK/WPF/CSharp/Video Compositor Demo/Video Compositor Demo netcore31.csproj
@@ -18,8 +18,8 @@
-
-
-
+
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net472.csproj b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net472.csproj
index f9ce95711b..468008168d 100644
--- a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net472.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net472.csproj
@@ -25,7 +25,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net5.csproj b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net5.csproj
index b19756cad9..f7e7484ef7 100644
--- a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net5.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net5.csproj
@@ -25,7 +25,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net6.csproj b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net6.csproj
index 18474ef661..c2a152621c 100644
--- a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net6.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net6.csproj
@@ -25,7 +25,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net7.csproj b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net7.csproj
index c8f7e665bf..8688c78c4f 100644
--- a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net7.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net7.csproj
@@ -25,7 +25,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net8.csproj b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net8.csproj
index 00de7d7640..82a790cb14 100644
--- a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net8.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB net8.csproj
@@ -24,7 +24,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB netcore31.csproj b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB netcore31.csproj
index 74575f21bd..70f0f5cb0a 100644
--- a/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB netcore31.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo MB netcore31.csproj
@@ -25,7 +25,7 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net472.csproj b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net472.csproj
index eb209bb89e..5a781154f1 100644
--- a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net472.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net472.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net5.csproj b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net5.csproj
index 3d41561820..b85f4c6e87 100644
--- a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net5.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net5.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net6.csproj b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net6.csproj
index cf0294ccdb..5a9995bb65 100644
--- a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net6.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net6.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net7.csproj b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net7.csproj
index d579a1a702..b30fd6c9fe 100644
--- a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net7.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net7.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net8.csproj b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net8.csproj
index 31367fccdd..098b71541d 100644
--- a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net8.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo net8.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo netcore31.csproj b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo netcore31.csproj
index 103b287ae8..4554fc5b29 100644
--- a/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo netcore31.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Memory Player Demo/Memory Player Demo netcore31.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net472.csproj b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net472.csproj
index 98c3f0c0bb..5ff21c2d23 100644
--- a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net472.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net472.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net5.csproj b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net5.csproj
index b704afe29f..5a841c30ee 100644
--- a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net5.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net5.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net6.csproj b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net6.csproj
index bbdb951b94..eeb996bdfb 100644
--- a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net6.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net6.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net7.csproj b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net7.csproj
index 08158c15d0..ba64d6d1dc 100644
--- a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net7.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net7.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net8.csproj b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net8.csproj
index 811ac75bfa..3e1a6cd92f 100644
--- a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net8.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo net8.csproj
@@ -24,8 +24,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo netcore31.csproj b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo netcore31.csproj
index 8c766ff739..d695183886 100644
--- a/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo netcore31.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/RTSP MultiView Demo/RTSP MultiView Demo netcore31.csproj
@@ -24,8 +24,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net472.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net472.csproj
index f794085e92..9c2294529a 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net472.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net472.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net5.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net5.csproj
index 158fcbb77f..2bee8d7d5b 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net5.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net5.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net6.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net6.csproj
index bd3b8134fe..f9a3b4f597 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net6.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net6.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net7.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net7.csproj
index f1ba411f69..acf56b4f5d 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net7.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net7.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net8.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net8.csproj
index f1ba411f69..acf56b4f5d 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net8.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo net8.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo netcore31.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo netcore31.csproj
index 545aa5c9bf..d67b048e11 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo netcore31.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Player Demo/Simple Player Demo netcore31.csproj
@@ -24,8 +24,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net472.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net472.csproj
index 03bc810529..ea750bc183 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net472.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net472.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net5.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net5.csproj
index 9084a80184..48375475f3 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net5.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net5.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net6.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net6.csproj
index ed089720d9..8182594962 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net6.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net6.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net7.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net7.csproj
index 4defd054d3..2d001b224b 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net7.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net7.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net8.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net8.csproj
index 9d93fe6a7c..e8fcab999d 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net8.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo net8.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo netcore31.csproj b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo netcore31.csproj
index c633c6dd13..14fbdc257c 100644
--- a/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo netcore31.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Simple Video Capture Demo/Simple Video Capture Demo netcore31.csproj
@@ -24,8 +24,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net472.csproj b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net472.csproj
index 757a5ccb18..20e9e54bda 100644
--- a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net472.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net472.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net5.csproj b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net5.csproj
index ac8619b7a6..47b2e944f2 100644
--- a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net5.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net5.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net6.csproj b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net6.csproj
index a9d8831a67..392cf9d447 100644
--- a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net6.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net6.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net7.csproj b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net7.csproj
index ff89a9c4ed..5be27e47e9 100644
--- a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net7.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net7.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net8.csproj b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net8.csproj
index cbe449bb5e..b2cb1ada02 100644
--- a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net8.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo net8.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo netcore31.csproj b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo netcore31.csproj
index 96334f9ac8..bb84cbec0a 100644
--- a/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo netcore31.csproj
+++ b/Media Blocks SDK/WinForms/CSharp/Video Mixer Demo/Video Mixer Demo netcore31.csproj
@@ -24,8 +24,8 @@
-
-
+
+
diff --git a/Media Blocks SDK/iOS/SimpleVideoCapture/SimpleVideoCapture.csproj b/Media Blocks SDK/iOS/SimpleVideoCapture/SimpleVideoCapture.csproj
index efdc9cce5e..c8fd59d972 100644
--- a/Media Blocks SDK/iOS/SimpleVideoCapture/SimpleVideoCapture.csproj
+++ b/Media Blocks SDK/iOS/SimpleVideoCapture/SimpleVideoCapture.csproj
@@ -31,8 +31,8 @@
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/MainPage.xaml.cs b/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/MainPage.xaml.cs
index 0b5489c2eb..dba3be019a 100644
--- a/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/MainPage.xaml.cs
+++ b/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/MainPage.xaml.cs
@@ -15,6 +15,7 @@
using System.Reflection;
using System.Drawing.Printing;
using VisioForge.Core.Types.X.Output;
+using VisioForge.Core;
#if ANDROID
using Android.Runtime;
@@ -80,6 +81,8 @@ private void Window_Destroying(object sender, EventArgs e)
_player.Dispose();
_player = null;
}
+
+ VisioForgeX.DestroySDK();
}
private void MainPage_Loaded(object sender, EventArgs e)
diff --git a/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer.csproj b/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer.csproj
index 8b95e241e7..18f913fa72 100644
--- a/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer.csproj
+++ b/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer.csproj
@@ -61,7 +61,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net472.csproj b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net472.csproj
index 76936bc8da..2eb3d976db 100644
--- a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net472.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net472.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net5.csproj b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net5.csproj
index 3484ec5503..f246d9621f 100644
--- a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net5.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net5.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net6.csproj b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net6.csproj
index 89a8570302..65a2b94e34 100644
--- a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net6.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net6.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net7.csproj b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net7.csproj
index 927bf735ab..3a09dac0bf 100644
--- a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net7.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net7.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net8.csproj b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net8.csproj
index 92f8463570..2f12d4f513 100644
--- a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net8.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X net8.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X netcore31.csproj b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X netcore31.csproj
index 95d215887f..1ed74fbb24 100644
--- a/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X netcore31.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Decklink Output Player Demo/Decklink Output Player Demo X netcore31.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net472.csproj b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net472.csproj
index dce4fa3f1b..7f28bc3971 100644
--- a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net472.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net472.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net5.csproj b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net5.csproj
index d82fd1a956..eae12cc8cc 100644
--- a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net5.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net5.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net6.csproj b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net6.csproj
index 6985bccfd2..6b08c4f78e 100644
--- a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net6.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net6.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net7.csproj b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net7.csproj
index 3209cb8094..e5c8319ac0 100644
--- a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net7.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net7.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net8.csproj b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net8.csproj
index 946079ee2f..46ba11f958 100644
--- a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net8.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF net8.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF netcore31.csproj b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF netcore31.csproj
index e4633bc0b9..840e786b34 100644
--- a/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF netcore31.csproj
+++ b/Media Player SDK X (crossplatform)/WPF/Simple Player Demo/Simple Player Demo X WPF netcore31.csproj
@@ -16,7 +16,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net472.csproj b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net472.csproj
index 149207c1da..ad01971977 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net472.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net472.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net5.csproj b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net5.csproj
index 060a50c527..1aece806a5 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net5.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net5.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net6.csproj b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net6.csproj
index fe24aaf07b..63c200fc08 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net6.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net6.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net7.csproj b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net7.csproj
index cd3b54aae9..40bfb0e697 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net7.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net7.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net8.csproj b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net8.csproj
index 59f8e3d180..52c50497af 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net8.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X net8.csproj
@@ -22,8 +22,8 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X netcore31.csproj b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X netcore31.csproj
index c29e629bae..ed5ef9590a 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X netcore31.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Karaoke Demo/Karaoke Demo X netcore31.csproj
@@ -23,8 +23,8 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net472.csproj b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net472.csproj
index 7a44eaade9..aadb44363d 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net472.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net472.csproj
@@ -64,7 +64,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net5.csproj b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net5.csproj
index 57bd3f0f42..875e9269ea 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net5.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net5.csproj
@@ -64,7 +64,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net6.csproj b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net6.csproj
index 0244de001b..515f211df0 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net6.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net6.csproj
@@ -64,7 +64,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net7.csproj b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net7.csproj
index 0a95667edb..fbeb5e8635 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net7.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net7.csproj
@@ -64,7 +64,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net8.csproj b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net8.csproj
index 083a173eca..abc52553f9 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net8.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X net8.csproj
@@ -63,7 +63,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X netcore31.csproj b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X netcore31.csproj
index d66162a4ab..92b850827b 100644
--- a/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X netcore31.csproj
+++ b/Media Player SDK X (crossplatform)/WinForms/Main Demo/Main Demo MP X netcore31.csproj
@@ -64,7 +64,7 @@
-
-
+
+
diff --git a/Media Player SDK X (crossplatform)/WinUI/Simple Media Player WinUI/Simple Media Player WinUIX.csproj b/Media Player SDK X (crossplatform)/WinUI/Simple Media Player WinUI/Simple Media Player WinUIX.csproj
index d4987496e1..89ab1d624a 100644
--- a/Media Player SDK X (crossplatform)/WinUI/Simple Media Player WinUI/Simple Media Player WinUIX.csproj
+++ b/Media Player SDK X (crossplatform)/WinUI/Simple Media Player WinUI/Simple Media Player WinUIX.csproj
@@ -39,8 +39,8 @@
-->
-
-
+
+
diff --git a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net472.csproj b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net472.csproj
index df6dbffd77..9619566337 100644
--- a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net472.csproj
+++ b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net472.csproj
@@ -38,13 +38,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net5.csproj b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net5.csproj
index eb52d16664..47df95f3c7 100644
--- a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net5.csproj
+++ b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net5.csproj
@@ -38,13 +38,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net6.csproj b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net6.csproj
index f01e929c07..2b1cee3e8e 100644
--- a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net6.csproj
+++ b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net6.csproj
@@ -38,13 +38,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net7.csproj b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net7.csproj
index b8c56a71d9..eaca4a8194 100644
--- a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net7.csproj
+++ b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net7.csproj
@@ -38,13 +38,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net8.csproj b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net8.csproj
index 2b630bb924..bc42d130b5 100644
--- a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net8.csproj
+++ b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) net8.csproj
@@ -37,13 +37,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) netcore31.csproj b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) netcore31.csproj
index 3d477ec735..61c78c304a 100644
--- a/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) netcore31.csproj
+++ b/Media Player SDK/WPF/CSharp/Main Demo/Main Demo MP WPF (NuGet) netcore31.csproj
@@ -38,13 +38,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net472.csproj b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net472.csproj
index 5eefb3f784..bdf503686e 100644
--- a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net472.csproj
+++ b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net472.csproj
@@ -9,10 +9,10 @@
x64
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net5.csproj b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net5.csproj
index 963660211f..7f382a1083 100644
--- a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net5.csproj
+++ b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net5.csproj
@@ -9,10 +9,10 @@
x64
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net6.csproj b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net6.csproj
index 5de0524451..9279ce1430 100644
--- a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net6.csproj
+++ b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net6.csproj
@@ -9,10 +9,10 @@
win7-x64
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net7.csproj b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net7.csproj
index 70546d26fc..e9a4f3f354 100644
--- a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net7.csproj
+++ b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net7.csproj
@@ -9,10 +9,10 @@
x64
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net8.csproj b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net8.csproj
index e7cd1a8112..1ed451b58c 100644
--- a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net8.csproj
+++ b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) net8.csproj
@@ -8,10 +8,10 @@
x64
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) netcore31.csproj b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) netcore31.csproj
index 586e79944d..f81b601933 100644
--- a/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) netcore31.csproj
+++ b/Media Player SDK/WPF/CSharp/Nvidia Maxine Player/Nvidia Maxine Player (NuGet) netcore31.csproj
@@ -9,10 +9,10 @@
x64
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net472.csproj b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net472.csproj
index 7598a7baf7..2a70879008 100644
--- a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net472.csproj
+++ b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net472.csproj
@@ -12,10 +12,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net5.csproj b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net5.csproj
index b9ff8bca55..2aa5192678 100644
--- a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net5.csproj
+++ b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net5.csproj
@@ -12,10 +12,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net6.csproj b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net6.csproj
index f8e8126339..1b0cad8edc 100644
--- a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net6.csproj
+++ b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net6.csproj
@@ -12,10 +12,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net7.csproj b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net7.csproj
index a5ac582565..3afc459128 100644
--- a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net7.csproj
+++ b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net7.csproj
@@ -12,10 +12,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net8.csproj b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net8.csproj
index 44e8cda6c0..36ba34cea5 100644
--- a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net8.csproj
+++ b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) net8.csproj
@@ -11,10 +11,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) netcore31.csproj b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) netcore31.csproj
index 6779f0a077..57d01b9e10 100644
--- a/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) netcore31.csproj
+++ b/Media Player SDK/WPF/CSharp/Skinned Player/Skinned Player (NuGet) netcore31.csproj
@@ -11,12 +11,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net472.csproj b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net472.csproj
index 51b511491d..67eb626e31 100644
--- a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net472.csproj
@@ -11,12 +11,12 @@
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net5.csproj b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net5.csproj
index 986d550174..f9459a9c2f 100644
--- a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net5.csproj
@@ -11,12 +11,12 @@
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net6.csproj b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net6.csproj
index b14be725bf..69561e818b 100644
--- a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net6.csproj
@@ -11,12 +11,12 @@
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net7.csproj b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net7.csproj
index 62951fab9b..91f702c0d5 100644
--- a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net7.csproj
@@ -11,12 +11,12 @@
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net8.csproj b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net8.csproj
index 5c3f71d09e..9da031ac88 100644
--- a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) net8.csproj
@@ -10,12 +10,12 @@
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) netcore31.csproj b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) netcore31.csproj
index 26ea7e14bf..c46736837e 100644
--- a/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WPF/CSharp/madVR Demo/madVR Demo (NuGet) netcore31.csproj
@@ -11,12 +11,12 @@
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net472.csproj
index 4e7928ed4a..045549e8d6 100644
--- a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net472.csproj
@@ -65,9 +65,9 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net5.csproj
index 7517faf40a..5ea3f1d43f 100644
--- a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net5.csproj
@@ -65,9 +65,9 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net6.csproj
index e56384bbe8..86ad358390 100644
--- a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net6.csproj
@@ -65,9 +65,9 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net7.csproj
index 1953e1570f..768178fd26 100644
--- a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net7.csproj
@@ -65,9 +65,9 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net8.csproj
index 0c41ec0867..bb89b7b22e 100644
--- a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) net8.csproj
@@ -64,9 +64,9 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) netcore31.csproj
index c3c90221fd..8c91a32238 100644
--- a/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/Audio Player/Audio Player Demo (NuGet) netcore31.csproj
@@ -65,9 +65,9 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net472.csproj
index 2157799d7b..00451af413 100644
--- a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net472.csproj
@@ -62,9 +62,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net5.csproj
index fdf4f37ef7..ce55d4511e 100644
--- a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net5.csproj
@@ -62,9 +62,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net6.csproj
index 4f5478ef00..3e3897a4c6 100644
--- a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net6.csproj
@@ -62,9 +62,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net7.csproj
index 25ab861a81..8a3ae77dd7 100644
--- a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net7.csproj
@@ -62,9 +62,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net8.csproj
index 4fbb3b84c9..e7254759b2 100644
--- a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) net8.csproj
@@ -61,9 +61,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) netcore31.csproj
index cb17f371b7..a5aff711a6 100644
--- a/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/DVD Player/DVD Player Demo (NuGet) netcore31.csproj
@@ -62,9 +62,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net472.csproj
index 2142bcd678..dacd8f1dd3 100644
--- a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net472.csproj
@@ -7,9 +7,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net5.csproj
index da47fbf58e..14e857a4de 100644
--- a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net5.csproj
@@ -8,9 +8,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net6.csproj
index f8fdb77c77..44b9cfcbc5 100644
--- a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net6.csproj
@@ -8,9 +8,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net7.csproj
index e5c7ea2100..a1f7dad293 100644
--- a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net7.csproj
@@ -8,9 +8,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net8.csproj
index 5d6a1bf877..39e046940a 100644
--- a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) net8.csproj
@@ -7,9 +7,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) netcore31.csproj
index 70dbe6a43b..b4fac9514a 100644
--- a/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/Encrypted Memory Playback Demo/Encrypted Memory Playback Demo (NuGet) netcore31.csproj
@@ -8,9 +8,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net472.csproj
index 6d499a0abc..d7efdb6094 100644
--- a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net472.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net5.csproj
index ce0e04c3e6..bfd10f5710 100644
--- a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net5.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net6.csproj
index 534c8afedc..b966b49687 100644
--- a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net6.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net7.csproj
index 67173861c1..1b5f5c4dce 100644
--- a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net7.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net8.csproj
index a77ffcf726..8479fe02bc 100644
--- a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) net8.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) netcore31.csproj
index fe7eb4e8ec..8b89921327 100644
--- a/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/Karaoke Demo/Karaoke Demo (NuGet) netcore31.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net472.csproj
index c9fe170f7d..210f5c6a3c 100644
--- a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net472.csproj
@@ -62,16 +62,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net5.csproj
index f53222d8d2..500e5e04c2 100644
--- a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net5.csproj
@@ -62,16 +62,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net6.csproj
index 0656e647c1..5d59691bc3 100644
--- a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net6.csproj
@@ -62,16 +62,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net7.csproj
index 812c54e61d..45ab5713f7 100644
--- a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net7.csproj
@@ -62,16 +62,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net8.csproj
index bf1c5a67fe..036ad58d77 100644
--- a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) net8.csproj
@@ -61,16 +61,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) netcore31.csproj
index 6c71661139..eec92efb99 100644
--- a/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/Main Demo/Main Demo MP (NuGet) netcore31.csproj
@@ -62,16 +62,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net472.csproj
index f6b1a71aa2..6a5a43cb8f 100644
--- a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net472.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net5.csproj
index 3156a0679e..8c7082c33c 100644
--- a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net5.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net6.csproj
index 980e56776a..d31520188a 100644
--- a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net6.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net7.csproj
index 9db1f73061..584c9b877d 100644
--- a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net7.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net8.csproj
index 57fd5356fa..fbf0aaedfb 100644
--- a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) net8.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) netcore31.csproj
index 217c8493c4..b2000e6834 100644
--- a/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/Memory Stream/Memory Playback Demo (NuGet) netcore31.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net472.csproj
index 392459deeb..ff7db0697a 100644
--- a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net472.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net5.csproj
index eba975339e..7295384c1a 100644
--- a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net5.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net6.csproj
index 5ba76e3778..701c1531b8 100644
--- a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net6.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net7.csproj
index 5469a3c49e..489c0fe14a 100644
--- a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net7.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net8.csproj
index 22f7b6cf6d..8704df17c4 100644
--- a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) net8.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) netcore31.csproj
index 1ea5a64cc5..972e56e8e1 100644
--- a/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/Multiple Video Streams/Multiple Video Streams Demo (NuGet) netcore31.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net472.csproj
index 03dccd6374..5a82a99f1d 100644
--- a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net472.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net5.csproj
index c0f67e10f4..3e6ea6ece0 100644
--- a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net5.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net6.csproj
index 3920b1cf72..ec1c3b9955 100644
--- a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net6.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net7.csproj
index fdce39b50d..d9dca525eb 100644
--- a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net7.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net8.csproj
index 64cb1834e6..ca79c823da 100644
--- a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) net8.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) netcore31.csproj
index 6b9cb6e581..b5cdc7bb7b 100644
--- a/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/Seamless Playback/Seamless Playback Demo (NuGet) netcore31.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net472.csproj
index a9a661646f..81f8bcd59a 100644
--- a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net472.csproj
@@ -62,16 +62,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net5.csproj
index 25e6fa16a7..411e7614d8 100644
--- a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net5.csproj
@@ -62,16 +62,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net6.csproj
index 9e6ac247e4..6cc34f53dd 100644
--- a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net6.csproj
@@ -62,16 +62,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net7.csproj
index cc6b8e7e2d..bd045ddaad 100644
--- a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net7.csproj
@@ -62,16 +62,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net8.csproj
index a39dfee60d..eaa1bb5e6d 100644
--- a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) net8.csproj
@@ -61,16 +61,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) netcore31.csproj
index 8582b1efc4..ec65380684 100644
--- a/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/Simple Video Player/Simple Video Player Demo (NuGet) netcore31.csproj
@@ -62,16 +62,16 @@
-
-
+
+
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net472.csproj
index 4440dc3f19..30ada304f7 100644
--- a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net472.csproj
@@ -72,10 +72,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net5.csproj
index f4c9f83073..7b3f97e030 100644
--- a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net5.csproj
@@ -72,10 +72,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net6.csproj
index 7402c092e3..66aacad72d 100644
--- a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net6.csproj
@@ -72,10 +72,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net7.csproj
index 98f9761e13..c1c5bc63e4 100644
--- a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net7.csproj
@@ -72,10 +72,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net8.csproj
index 95079adca0..f883c13015 100644
--- a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) net8.csproj
@@ -71,10 +71,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) netcore31.csproj
index 6b9250416a..4b820cf13d 100644
--- a/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/Two Windows/Two Windows Demo (NuGet) netcore31.csproj
@@ -72,10 +72,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net472.csproj
index 360de18102..91d8c866d0 100644
--- a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net472.csproj
@@ -61,9 +61,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net5.csproj
index dde07533ec..b71e3b8701 100644
--- a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net5.csproj
@@ -61,9 +61,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net6.csproj
index b520f9e54c..115fa393f4 100644
--- a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net6.csproj
@@ -61,9 +61,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net7.csproj
index 6569997fe6..d9eb71d56e 100644
--- a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net7.csproj
@@ -61,9 +61,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net8.csproj
index d4ee3eb483..6d763add30 100644
--- a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) net8.csproj
@@ -60,9 +60,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) netcore31.csproj
index 5a46936f47..99e7c2b276 100644
--- a/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/VR 360 Demo/VR 360 Demo (NuGet) netcore31.csproj
@@ -61,9 +61,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net472.csproj
index 291de9d03c..f1f535368b 100644
--- a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net472.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net5.csproj
index a9ff5af94f..ee399b934b 100644
--- a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net5.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net6.csproj
index ba26dc961c..21b7246d83 100644
--- a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net6.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net7.csproj
index 1f721a5a0f..4dd32424d9 100644
--- a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net7.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net8.csproj
index f84e9cabd8..9dfc7f27a4 100644
--- a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) net8.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) netcore31.csproj
index 035cd799b3..f856e265bd 100644
--- a/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/Video Mixing Demo/Video Mixing Demo (NuGet) netcore31.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net472.csproj
index 54de35f3d2..1bd94d2703 100644
--- a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net472.csproj
@@ -63,10 +63,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net5.csproj
index 75e4cab695..f6ea55b382 100644
--- a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net5.csproj
@@ -63,10 +63,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net6.csproj
index ad080c772d..0e238a7000 100644
--- a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net6.csproj
@@ -63,10 +63,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net7.csproj
index d383147905..cfe8a06ba0 100644
--- a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net7.csproj
@@ -63,10 +63,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net8.csproj
index 1b8bd4e905..56a15ba7e7 100644
--- a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) net8.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) netcore31.csproj
index edc56a9d9a..4498da2abb 100644
--- a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo (NuGet) netcore31.csproj
@@ -63,10 +63,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net472.csproj b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net472.csproj
index cad3306b10..2f18efe7e0 100644
--- a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net472.csproj
+++ b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net472.csproj
@@ -20,12 +20,12 @@
visioforge_main_icon.ico
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net5.csproj b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net5.csproj
index 384e244bf9..e9788ef88b 100644
--- a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net5.csproj
+++ b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net5.csproj
@@ -20,12 +20,12 @@
visioforge_main_icon.ico
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net6.csproj b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net6.csproj
index a99c37295f..a93ea4047d 100644
--- a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net6.csproj
+++ b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net6.csproj
@@ -20,12 +20,12 @@
visioforge_main_icon.ico
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net7.csproj b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net7.csproj
index b493d512da..06ea6ac50b 100644
--- a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net7.csproj
+++ b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net7.csproj
@@ -20,12 +20,12 @@
visioforge_main_icon.ico
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net8.csproj b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net8.csproj
index 90ef4d7f2a..fc19bcf60c 100644
--- a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net8.csproj
+++ b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) net8.csproj
@@ -19,12 +19,12 @@
visioforge_main_icon.ico
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) netcore31.csproj b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) netcore31.csproj
index f2f7083831..81c73d80a6 100644
--- a/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) netcore31.csproj
+++ b/Media Player SDK/WinForms/CSharp/madVR Demo/madVR Demo (NuGet) netcore31.csproj
@@ -20,12 +20,12 @@
visioforge_main_icon.ico
-
-
+
+
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Audio Player/Audio Player Demo VB (NuGet).vbproj b/Media Player SDK/WinForms/VB .Net/Audio Player/Audio Player Demo VB (NuGet).vbproj
index e46f57b861..ce556aaaa5 100644
--- a/Media Player SDK/WinForms/VB .Net/Audio Player/Audio Player Demo VB (NuGet).vbproj
+++ b/Media Player SDK/WinForms/VB .Net/Audio Player/Audio Player Demo VB (NuGet).vbproj
@@ -111,10 +111,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Audio Player/Audio Player Demo VB.vbproj b/Media Player SDK/WinForms/VB .Net/Audio Player/Audio Player Demo VB.vbproj
index 5e9d3bd8a3..2d3d4546eb 100644
--- a/Media Player SDK/WinForms/VB .Net/Audio Player/Audio Player Demo VB.vbproj
+++ b/Media Player SDK/WinForms/VB .Net/Audio Player/Audio Player Demo VB.vbproj
@@ -111,8 +111,8 @@
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Audio Player/My Project/AssemblyInfo.vb b/Media Player SDK/WinForms/VB .Net/Audio Player/My Project/AssemblyInfo.vb
index 10b052356d..49c59fb4ae 100644
--- a/Media Player SDK/WinForms/VB .Net/Audio Player/My Project/AssemblyInfo.vb
+++ b/Media Player SDK/WinForms/VB .Net/Audio Player/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/DVD Player/DVD Player Demo VB (NuGet).vbproj b/Media Player SDK/WinForms/VB .Net/DVD Player/DVD Player Demo VB (NuGet).vbproj
index 8378c362b8..b206622841 100644
--- a/Media Player SDK/WinForms/VB .Net/DVD Player/DVD Player Demo VB (NuGet).vbproj
+++ b/Media Player SDK/WinForms/VB .Net/DVD Player/DVD Player Demo VB (NuGet).vbproj
@@ -108,9 +108,9 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/DVD Player/DVD Player Demo VB.vbproj b/Media Player SDK/WinForms/VB .Net/DVD Player/DVD Player Demo VB.vbproj
index 16e9ce7f25..45c56d0ea6 100644
--- a/Media Player SDK/WinForms/VB .Net/DVD Player/DVD Player Demo VB.vbproj
+++ b/Media Player SDK/WinForms/VB .Net/DVD Player/DVD Player Demo VB.vbproj
@@ -108,8 +108,8 @@
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/DVD Player/My Project/AssemblyInfo.vb b/Media Player SDK/WinForms/VB .Net/DVD Player/My Project/AssemblyInfo.vb
index a4aaf9a256..da2c496b17 100644
--- a/Media Player SDK/WinForms/VB .Net/DVD Player/My Project/AssemblyInfo.vb
+++ b/Media Player SDK/WinForms/VB .Net/DVD Player/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Main Demo/Main Demo MP VB (NuGet).vbproj b/Media Player SDK/WinForms/VB .Net/Main Demo/Main Demo MP VB (NuGet).vbproj
index f71e2ca489..a734bb22c8 100644
--- a/Media Player SDK/WinForms/VB .Net/Main Demo/Main Demo MP VB (NuGet).vbproj
+++ b/Media Player SDK/WinForms/VB .Net/Main Demo/Main Demo MP VB (NuGet).vbproj
@@ -122,12 +122,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Main Demo/Main Demo MP VB.vbproj b/Media Player SDK/WinForms/VB .Net/Main Demo/Main Demo MP VB.vbproj
index 8f5fff7935..2e403a5e3c 100644
--- a/Media Player SDK/WinForms/VB .Net/Main Demo/Main Demo MP VB.vbproj
+++ b/Media Player SDK/WinForms/VB .Net/Main Demo/Main Demo MP VB.vbproj
@@ -122,8 +122,8 @@
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Main Demo/My Project/AssemblyInfo.vb b/Media Player SDK/WinForms/VB .Net/Main Demo/My Project/AssemblyInfo.vb
index 1147023341..0e35885b07 100644
--- a/Media Player SDK/WinForms/VB .Net/Main Demo/My Project/AssemblyInfo.vb
+++ b/Media Player SDK/WinForms/VB .Net/Main Demo/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Memory Stream/Memory Playback Demo VB (NuGet).vbproj b/Media Player SDK/WinForms/VB .Net/Memory Stream/Memory Playback Demo VB (NuGet).vbproj
index 6985810b6e..9cb7db7c82 100644
--- a/Media Player SDK/WinForms/VB .Net/Memory Stream/Memory Playback Demo VB (NuGet).vbproj
+++ b/Media Player SDK/WinForms/VB .Net/Memory Stream/Memory Playback Demo VB (NuGet).vbproj
@@ -107,10 +107,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Memory Stream/Memory Playback Demo VB.vbproj b/Media Player SDK/WinForms/VB .Net/Memory Stream/Memory Playback Demo VB.vbproj
index d997d85816..c70fbe7c7b 100644
--- a/Media Player SDK/WinForms/VB .Net/Memory Stream/Memory Playback Demo VB.vbproj
+++ b/Media Player SDK/WinForms/VB .Net/Memory Stream/Memory Playback Demo VB.vbproj
@@ -107,8 +107,8 @@
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Memory Stream/My Project/AssemblyInfo.vb b/Media Player SDK/WinForms/VB .Net/Memory Stream/My Project/AssemblyInfo.vb
index 83386881f5..a82140d1ca 100644
--- a/Media Player SDK/WinForms/VB .Net/Memory Stream/My Project/AssemblyInfo.vb
+++ b/Media Player SDK/WinForms/VB .Net/Memory Stream/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Two Windows/My Project/AssemblyInfo.vb b/Media Player SDK/WinForms/VB .Net/Two Windows/My Project/AssemblyInfo.vb
index ceee70a5b7..0a416e116a 100644
--- a/Media Player SDK/WinForms/VB .Net/Two Windows/My Project/AssemblyInfo.vb
+++ b/Media Player SDK/WinForms/VB .Net/Two Windows/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Two Windows/Two Windows Demo VB (NuGet).vbproj b/Media Player SDK/WinForms/VB .Net/Two Windows/Two Windows Demo VB (NuGet).vbproj
index 4987d73674..40f20e94aa 100644
--- a/Media Player SDK/WinForms/VB .Net/Two Windows/Two Windows Demo VB (NuGet).vbproj
+++ b/Media Player SDK/WinForms/VB .Net/Two Windows/Two Windows Demo VB (NuGet).vbproj
@@ -118,10 +118,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Two Windows/Two Windows Demo VB.vbproj b/Media Player SDK/WinForms/VB .Net/Two Windows/Two Windows Demo VB.vbproj
index a077bb067c..6872aac60e 100644
--- a/Media Player SDK/WinForms/VB .Net/Two Windows/Two Windows Demo VB.vbproj
+++ b/Media Player SDK/WinForms/VB .Net/Two Windows/Two Windows Demo VB.vbproj
@@ -118,8 +118,8 @@
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Video Player/My Project/AssemblyInfo.vb b/Media Player SDK/WinForms/VB .Net/Video Player/My Project/AssemblyInfo.vb
index e9c01e9ced..a839613a7b 100644
--- a/Media Player SDK/WinForms/VB .Net/Video Player/My Project/AssemblyInfo.vb
+++ b/Media Player SDK/WinForms/VB .Net/Video Player/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Video Player/Video Player Demo VB (NuGet).vbproj b/Media Player SDK/WinForms/VB .Net/Video Player/Video Player Demo VB (NuGet).vbproj
index cb759a13a8..07c39b5919 100644
--- a/Media Player SDK/WinForms/VB .Net/Video Player/Video Player Demo VB (NuGet).vbproj
+++ b/Media Player SDK/WinForms/VB .Net/Video Player/Video Player Demo VB (NuGet).vbproj
@@ -105,12 +105,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Media Player SDK/WinForms/VB .Net/Video Player/Video Player Demo VB.vbproj b/Media Player SDK/WinForms/VB .Net/Video Player/Video Player Demo VB.vbproj
index f970f7fe21..387e19b94a 100644
--- a/Media Player SDK/WinForms/VB .Net/Video Player/Video Player Demo VB.vbproj
+++ b/Media Player SDK/WinForms/VB .Net/Video Player/Video Player Demo VB.vbproj
@@ -105,8 +105,8 @@
-
-
+
+
diff --git a/Media Player SDK/WinUI/CSharp/Simple Media Player WinUI/Simple Media Player WinUI.csproj b/Media Player SDK/WinUI/CSharp/Simple Media Player WinUI/Simple Media Player WinUI.csproj
index 27395dff29..acd97caa02 100644
--- a/Media Player SDK/WinUI/CSharp/Simple Media Player WinUI/Simple Media Player WinUI.csproj
+++ b/Media Player SDK/WinUI/CSharp/Simple Media Player WinUI/Simple Media Player WinUI.csproj
@@ -35,10 +35,10 @@
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net472 (NuGet).csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net472 (NuGet).csproj
index 2cf7510a91..2acaccaccd 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net472 (NuGet).csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net472 (NuGet).csproj
@@ -8,9 +8,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net472.csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net472.csproj
index cb542f70df..d5fa8b4549 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net472.csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net472.csproj
@@ -8,7 +8,7 @@
true
-
-
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net5 (NuGet).csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net5 (NuGet).csproj
index 6e2885da06..6a972d2c03 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net5 (NuGet).csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net5 (NuGet).csproj
@@ -8,9 +8,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net5.csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net5.csproj
index eb3d4e82cc..792d54aaab 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net5.csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net5.csproj
@@ -8,7 +8,7 @@
true
-
-
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net6 (NuGet).csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net6 (NuGet).csproj
index efc06a9828..f9696a5fa5 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net6 (NuGet).csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net6 (NuGet).csproj
@@ -8,9 +8,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net6.csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net6.csproj
index bca154ea83..a0e941aecb 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net6.csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net6.csproj
@@ -8,7 +8,7 @@
true
-
-
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net7 (NuGet).csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net7 (NuGet).csproj
index 880a43bc8a..fc6aad0826 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net7 (NuGet).csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net7 (NuGet).csproj
@@ -8,9 +8,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net7.csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net7.csproj
index bf968b12b2..99b4823cab 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net7.csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net7.csproj
@@ -8,7 +8,7 @@
true
-
-
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net8 (NuGet).csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net8 (NuGet).csproj
index cddfeaab3c..45e5a2b070 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net8 (NuGet).csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net8 (NuGet).csproj
@@ -7,9 +7,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net8.csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net8.csproj
index 947f1dbfd0..5779339044 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net8.csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback net8.csproj
@@ -7,7 +7,7 @@
true
-
-
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback netcore31 (NuGet).csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback netcore31 (NuGet).csproj
index 11ead7f92f..b9ca6c9c69 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback netcore31 (NuGet).csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback netcore31 (NuGet).csproj
@@ -8,9 +8,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback netcore31.csproj b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback netcore31.csproj
index c16be6aaf2..27746deea5 100644
--- a/Media Player SDK/_CodeSnippets/memory-playback/memory-playback netcore31.csproj
+++ b/Media Player SDK/_CodeSnippets/memory-playback/memory-playback netcore31.csproj
@@ -8,7 +8,7 @@
true
-
-
+
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net472.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net472.csproj
index b6dcb7fa1e..2fca98f350 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net472.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net472.csproj
@@ -58,8 +58,8 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net5.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net5.csproj
index 05e1f1b0b8..8ce3f71047 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net5.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net5.csproj
@@ -58,8 +58,8 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net6.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net6.csproj
index 5d84bc4c43..6b0fe1ec04 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net6.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net6.csproj
@@ -58,8 +58,8 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net7.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net7.csproj
index 320692418c..39d381d2d5 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net7.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net7.csproj
@@ -58,8 +58,8 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net8.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net8.csproj
index 2d850cb776..9e0ad3c07f 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net8.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) net8.csproj
@@ -57,8 +57,8 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) netcore31.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) netcore31.csproj
index 38eb305289..7e124e7551 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) netcore31.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info (NuGet) netcore31.csproj
@@ -58,8 +58,8 @@
-
-
-
+
+
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net472.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net472.csproj
index dd099d3f6d..0ac2b36ac4 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net472.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net472.csproj
@@ -57,7 +57,7 @@
-
-
+
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net5.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net5.csproj
index 2f46705389..f9d7b73a83 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net5.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net5.csproj
@@ -57,6 +57,6 @@
-
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net6.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net6.csproj
index 4ce94f58b6..a242e8ef9c 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net6.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net6.csproj
@@ -57,7 +57,7 @@
-
-
+
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net7.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net7.csproj
index 9aed8da654..e744989229 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net7.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net7.csproj
@@ -57,7 +57,7 @@
-
-
+
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net8.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net8.csproj
index e6deaf01a4..4deb27b392 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net8.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info net8.csproj
@@ -56,7 +56,7 @@
-
-
+
+
diff --git a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info netcore31.csproj b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info netcore31.csproj
index 4d5a3af734..cb9abab01d 100644
--- a/Media Player SDK/_CodeSnippets/read-file-info/read-file-info netcore31.csproj
+++ b/Media Player SDK/_CodeSnippets/read-file-info/read-file-info netcore31.csproj
@@ -57,7 +57,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/Android/Simple Video Capture/Simple Video Capture net7.csproj b/Video Capture SDK X (crossplatform)/Android/Simple Video Capture/Simple Video Capture net7.csproj
index 1576c9821e..9d2069a86b 100644
--- a/Video Capture SDK X (crossplatform)/Android/Simple Video Capture/Simple Video Capture net7.csproj
+++ b/Video Capture SDK X (crossplatform)/Android/Simple Video Capture/Simple Video Capture net7.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/Android/Simple Video Capture/Simple Video Capture net8.csproj b/Video Capture SDK X (crossplatform)/Android/Simple Video Capture/Simple Video Capture net8.csproj
index 5fb6d6d913..5b7d0df3be 100644
--- a/Video Capture SDK X (crossplatform)/Android/Simple Video Capture/Simple Video Capture net8.csproj
+++ b/Video Capture SDK X (crossplatform)/Android/Simple Video Capture/Simple Video Capture net8.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/Avalonia/SimpleVideoCapture/SimpleVideoCaptureA/SimpleVideoCaptureA.csproj b/Video Capture SDK X (crossplatform)/Avalonia/SimpleVideoCapture/SimpleVideoCaptureA/SimpleVideoCaptureA.csproj
index e4de6163c4..efc48fd035 100644
--- a/Video Capture SDK X (crossplatform)/Avalonia/SimpleVideoCapture/SimpleVideoCaptureA/SimpleVideoCaptureA.csproj
+++ b/Video Capture SDK X (crossplatform)/Avalonia/SimpleVideoCapture/SimpleVideoCaptureA/SimpleVideoCaptureA.csproj
@@ -34,7 +34,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/MAUI/QRReader/MainPage.xaml.cs b/Video Capture SDK X (crossplatform)/MAUI/QRReader/MainPage.xaml.cs
index d4776da428..74cfcb173a 100644
--- a/Video Capture SDK X (crossplatform)/MAUI/QRReader/MainPage.xaml.cs
+++ b/Video Capture SDK X (crossplatform)/MAUI/QRReader/MainPage.xaml.cs
@@ -157,6 +157,8 @@ private async void Window_Destroying(object sender, EventArgs e)
_core?.Dispose();
_core = null;
}
+
+ VisioForgeX.DestroySDK();
}
private void Core_OnError(object sender, VisioForge.Core.Types.Events.ErrorsEventArgs e)
diff --git a/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader.csproj b/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader.csproj
index edf9f8e3f2..1a05ce4cb5 100644
--- a/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader.csproj
+++ b/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader.csproj
@@ -80,8 +80,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/MainPage.xaml.cs b/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/MainPage.xaml.cs
index bc13aaf6f6..0dd7474a70 100644
--- a/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/MainPage.xaml.cs
+++ b/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/MainPage.xaml.cs
@@ -140,6 +140,8 @@ private async void Window_Destroying(object sender, EventArgs e)
_core?.Dispose();
_core = null;
}
+
+ VisioForgeX.DestroySDK();
}
private void Core_OnError(object sender, VisioForge.Core.Types.Events.ErrorsEventArgs e)
diff --git a/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture.csproj b/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture.csproj
index e62c6e87bf..72e880aebe 100644
--- a/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture.csproj
+++ b/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture.csproj
@@ -76,8 +76,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net472.csproj
index a56470633a..5c1f38fb2e 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net472.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net472.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net5.csproj
index 958e49dc1b..866a5c1b75 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net5.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net5.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net6.csproj
index 33080fbbb1..f0f508fb6b 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net6.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net6.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net7.csproj
index 496c158c40..842a5fd003 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net7.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net7.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net8.csproj
index 3cbf0604fb..d6a80b268a 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net8.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF net8.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF netcore31.csproj
index 3d7ac642be..486b5aed56 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF netcore31.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Audio Capture Demo X WPF/Audio Capture Demo X WPF netcore31.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net472.csproj
index 8c104fd5b0..edb4c48336 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net472.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net472.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net5.csproj
index d67c630e27..45977b520d 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net5.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net5.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net6.csproj
index 47dd691725..0152227fb6 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net6.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net6.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net7.csproj
index 0c05596967..48d1824811 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net7.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net7.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net8.csproj
index 4e95632edc..65787eb155 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net8.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X net8.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X netcore31.csproj
index 3e72b9a658..fc029d5013 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X netcore31.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Decklink Demo X/Decklink Demo X netcore31.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net472.csproj
index 9ecd7dd4bd..39f337dbc3 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net472.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net472.csproj
@@ -28,8 +28,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net5.csproj
index 2242aa5c0d..b4285060a1 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net5.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net5.csproj
@@ -28,8 +28,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net6.csproj
index 5d7bb63fb5..d84f922473 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net6.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net6.csproj
@@ -28,8 +28,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net7.csproj
index 27a1510d72..ba239dda7b 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net7.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net7.csproj
@@ -28,8 +28,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net8.csproj
index 589ad919ce..13c3b650d3 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net8.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF net8.csproj
@@ -27,8 +27,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF netcore31.csproj
index 2bbbdd0a24..de99f60e2c 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF netcore31.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/IP Capture/IP Capture X Demo WPF netcore31.csproj
@@ -28,8 +28,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net472.csproj
index cfb4cd602d..c7593dd83f 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net472.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net472.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net5.csproj
index b0f07ee09d..82f88874d8 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net5.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net5.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net6.csproj
index 815726fb77..fbd306e19a 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net6.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net6.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net7.csproj
index 3630e773dc..389c8b9e12 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net7.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net7.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net8.csproj
index 102f7f1884..686e00fbe4 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net8.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X net8.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X netcore31.csproj
index fccb67f77d..2176ca3306 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X netcore31.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Source Demo/NDI Source Demo X netcore31.csproj
@@ -14,8 +14,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net472.csproj
index 7571839fa4..1993b5c4bb 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net472.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net472.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net5.csproj
index 271b49a6fa..79a5e737e9 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net5.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net5.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net6.csproj
index ca66a3bb2b..5845899aec 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net6.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net6.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net7.csproj
index 2a11c9419a..64378eafd1 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net7.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net7.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net8.csproj
index 8696662800..4b3d8aeade 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net8.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo net8.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo netcore31.csproj
index 303180430d..33fca79fcf 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo netcore31.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/NDI Streamer Demo/NDI Streamer Demo netcore31.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net472.csproj
index 01415b4586..12dcc38485 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net472.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net472.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net5.csproj
index df16e5fc99..e5b6efff10 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net5.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net5.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net6.csproj
index 18f0368f0f..d3959bb062 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net6.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net6.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net7.csproj
index fa53f793fa..7934f29d57 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net7.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net7.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net8.csproj
index 5cb7802f01..d6d9423eab 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net8.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X net8.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X netcore31.csproj
index 3d0b7f1543..951208910f 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X netcore31.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Overlay Manager Demo/Overlay Manager Demo X netcore31.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net472.csproj
index bd1f17ceab..05cdb8c423 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net472.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net472.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net5.csproj
index d7829217cc..8be3052ef3 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net5.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net5.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net6.csproj
index 433d48aedb..43b505d46b 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net6.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net6.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net7.csproj
index 0d28a4614e..c489472a7d 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net7.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net7.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net8.csproj
index afd9b9c1d5..4bfb27ffc1 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net8.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF net8.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF netcore31.csproj
index 35b18ca31f..2edebf7fc3 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF netcore31.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Screen_Capture/Screen Capture X Demo WPF netcore31.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net472.csproj
index 4b258fa657..1993e99580 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net472.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net472.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net5.csproj
index b283162c8a..0fcda80db1 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net5.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net5.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net6.csproj
index 241ca5ae53..8356c60cb4 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net6.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net6.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net7.csproj
index c2f28ed6b8..f1bbce7410 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net7.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net7.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net8.csproj
index 2e18805525..c8893a4beb 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net8.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X net8.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X netcore31.csproj
index c2309042cc..3a0c6eaecf 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X netcore31.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Simple Video Capture/Simple Video Capture X netcore31.csproj
@@ -18,7 +18,7 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net472.csproj
index 4461820dde..b92e507922 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net472.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net472.csproj
@@ -22,8 +22,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net5.csproj
index 6a7b436d08..142e88a49f 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net5.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net5.csproj
@@ -22,8 +22,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net6.csproj
index 5984e45693..8a444f6b6d 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net6.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net6.csproj
@@ -22,8 +22,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net7.csproj
index 2672338887..d6aa57772d 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net7.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net7.csproj
@@ -22,8 +22,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net8.csproj
index acda303937..475e054a81 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net8.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer net8.csproj
@@ -22,8 +22,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer netcore31.csproj
index d950fa3860..70be8ee3a2 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer netcore31.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Social Networks Streamer/Social Networks Streamer netcore31.csproj
@@ -22,8 +22,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net472.csproj
index 1301f16e5f..086f4cecc9 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net472.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net472.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net5.csproj
index fe891974d0..b265c92add 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net5.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net5.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net6.csproj
index 68f437d4e5..4dc288879c 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net6.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net6.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net7.csproj
index b92aa7b526..2d4a11a58b 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net7.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net7.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net8.csproj
index 81449d5055..aeecc7184e 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net8.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X net8.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X netcore31.csproj
index c6eefffc26..0e432f0087 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X netcore31.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/VNC Source Demo/VNC Source Demo X netcore31.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net472.csproj
index 5629eb6478..c101b08d8b 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net472.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net472.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net5.csproj
index 16efe24870..0b7a39e9f6 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net5.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net5.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net6.csproj
index 18c958666a..1335460982 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net6.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net6.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net7.csproj
index 31e1c6f8cc..7604d6fef0 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net7.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net7.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net8.csproj
index 66048ee8fb..1539fdf13a 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net8.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo net8.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo netcore31.csproj
index 4f3b4f3715..88b8815520 100644
--- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo netcore31.csproj
+++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Video Compositor Demo/Video Compositor Demo netcore31.csproj
@@ -15,8 +15,8 @@
-
-
+
+
diff --git a/Video Capture SDK/Avalonia/SimpleVideoCapture/SimpleVideoCaptureA/SimpleVideoCaptureA.csproj b/Video Capture SDK/Avalonia/SimpleVideoCapture/SimpleVideoCaptureA/SimpleVideoCaptureA.csproj
index a81b31459c..93a41f0255 100644
--- a/Video Capture SDK/Avalonia/SimpleVideoCapture/SimpleVideoCaptureA/SimpleVideoCaptureA.csproj
+++ b/Video Capture SDK/Avalonia/SimpleVideoCapture/SimpleVideoCaptureA/SimpleVideoCaptureA.csproj
@@ -25,7 +25,7 @@
-
-
+
+
diff --git a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net472.csproj b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net472.csproj
index 7c64685b4b..7c258f733b 100644
--- a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net472.csproj
+++ b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net472.csproj
@@ -29,9 +29,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net5.csproj b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net5.csproj
index 01dedb4a98..7a9af1c108 100644
--- a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net5.csproj
+++ b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net5.csproj
@@ -28,9 +28,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net6.csproj b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net6.csproj
index b9abac0f09..6d56782125 100644
--- a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net6.csproj
+++ b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net6.csproj
@@ -28,9 +28,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net7.csproj b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net7.csproj
index 73bd1734ad..1e5ea4cfc2 100644
--- a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net7.csproj
+++ b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net7.csproj
@@ -28,9 +28,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net8.csproj b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net8.csproj
index a02b2a4715..b118df2113 100644
--- a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net8.csproj
+++ b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) net8.csproj
@@ -27,9 +27,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) netcore31.csproj b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) netcore31.csproj
index b5115c9904..e470e1d8e7 100644
--- a/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) netcore31.csproj
+++ b/Video Capture SDK/Console/TV Tuner Demo/TV Tuner Demo CLI (NuGet) netcore31.csproj
@@ -28,9 +28,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net472.csproj b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net472.csproj
index 33cc2bdf33..57510d9ebc 100644
--- a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net472.csproj
+++ b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net472.csproj
@@ -28,9 +28,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net5.csproj b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net5.csproj
index aae108976b..775a83c19f 100644
--- a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net5.csproj
+++ b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net5.csproj
@@ -29,9 +29,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net6.csproj b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net6.csproj
index 95e3fdcf13..a4ea3c9faa 100644
--- a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net6.csproj
+++ b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net6.csproj
@@ -28,9 +28,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net7.csproj b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net7.csproj
index f44e7b52a5..3a370638a1 100644
--- a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net7.csproj
+++ b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net7.csproj
@@ -28,9 +28,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net8.csproj b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net8.csproj
index 0dece0d0da..d8753e6cb2 100644
--- a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net8.csproj
+++ b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) net8.csproj
@@ -27,9 +27,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) netcore31.csproj b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) netcore31.csproj
index afd69ff9da..d575372a82 100644
--- a/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) netcore31.csproj
+++ b/Video Capture SDK/Console/Video Capture Demo/Video Capture Demo CLI (NuGet) netcore31.csproj
@@ -28,9 +28,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/Service/IP Capture/IPCaptureService (NuGet) net472.csproj b/Video Capture SDK/Service/IP Capture/IPCaptureService (NuGet) net472.csproj
index 99447f624a..f93a275f2b 100644
--- a/Video Capture SDK/Service/IP Capture/IPCaptureService (NuGet) net472.csproj
+++ b/Video Capture SDK/Service/IP Capture/IPCaptureService (NuGet) net472.csproj
@@ -49,12 +49,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/Service/Screen Capture/Helper/ScreenCaptureServiceHelper (NuGet) net472.csproj b/Video Capture SDK/Service/Screen Capture/Helper/ScreenCaptureServiceHelper (NuGet) net472.csproj
index f6b8c0dc78..95429ca36d 100644
--- a/Video Capture SDK/Service/Screen Capture/Helper/ScreenCaptureServiceHelper (NuGet) net472.csproj
+++ b/Video Capture SDK/Service/Screen Capture/Helper/ScreenCaptureServiceHelper (NuGet) net472.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/Service/Screen Capture/Service/ScreenCaptureService (NuGet) net472.csproj b/Video Capture SDK/Service/Screen Capture/Service/ScreenCaptureService (NuGet) net472.csproj
index ba91eee062..70dd0f0d23 100644
--- a/Video Capture SDK/Service/Screen Capture/Service/ScreenCaptureService (NuGet) net472.csproj
+++ b/Video Capture SDK/Service/Screen Capture/Service/ScreenCaptureService (NuGet) net472.csproj
@@ -52,10 +52,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net472.csproj b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net472.csproj
index 9931595c22..e862800fcd 100644
--- a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net472.csproj
+++ b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net472.csproj
@@ -39,10 +39,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net5.csproj b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net5.csproj
index b396476bb9..9518155a20 100644
--- a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net5.csproj
+++ b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net5.csproj
@@ -39,10 +39,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net6.csproj b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net6.csproj
index bbcc58842a..44d80ab05f 100644
--- a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net6.csproj
+++ b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net6.csproj
@@ -39,10 +39,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net7.csproj b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net7.csproj
index 575b640bb8..1eb64203fa 100644
--- a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net7.csproj
+++ b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net7.csproj
@@ -39,10 +39,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net8.csproj b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net8.csproj
index 410040c665..c562bb0dcd 100644
--- a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net8.csproj
+++ b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) net8.csproj
@@ -38,10 +38,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) netcore31.csproj b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) netcore31.csproj
index 0228a0b375..0ff47c8d23 100644
--- a/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WPF/CSharp/Audio_Capture/Audio Capture Demo WPF (NuGet) netcore31.csproj
@@ -39,10 +39,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net472.csproj b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net472.csproj
index 0f58ad96e5..02bbe140cf 100644
--- a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net472.csproj
+++ b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net472.csproj
@@ -39,11 +39,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net5.csproj b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net5.csproj
index b3b058b81f..ea33ba29e6 100644
--- a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net5.csproj
+++ b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net5.csproj
@@ -38,11 +38,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net6.csproj b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net6.csproj
index e57f6ef529..9c00dffae8 100644
--- a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net6.csproj
+++ b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net6.csproj
@@ -39,11 +39,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net7.csproj b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net7.csproj
index 4b0acd8c61..6f0e88d164 100644
--- a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net7.csproj
+++ b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net7.csproj
@@ -39,11 +39,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net8.csproj b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net8.csproj
index ea525dec12..4d6cdadce8 100644
--- a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net8.csproj
+++ b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) net8.csproj
@@ -38,11 +38,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) netcore31.csproj b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) netcore31.csproj
index 60560fd93b..4ec8289fab 100644
--- a/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WPF/CSharp/DV_Capture/DV Capture Demo WPF (NuGet) netcore31.csproj
@@ -39,11 +39,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net472.csproj b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net472.csproj
index 4766939065..55e5adff31 100644
--- a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net472.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net472.csproj
@@ -66,18 +66,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net5.csproj b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net5.csproj
index 92e71e3615..4cb0ff620c 100644
--- a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net5.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net5.csproj
@@ -66,18 +66,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net6.csproj b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net6.csproj
index 71b6f15a16..083bc7623f 100644
--- a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net6.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net6.csproj
@@ -66,18 +66,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net7.csproj b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net7.csproj
index 5000fee711..2c80d5e6b1 100644
--- a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net7.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net7.csproj
@@ -66,18 +66,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net8.csproj b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net8.csproj
index 40e0bba056..6181b9aa2b 100644
--- a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net8.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) net8.csproj
@@ -65,18 +65,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) netcore31.csproj b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) netcore31.csproj
index 4891f90569..2b721b9cc0 100644
--- a/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP MJPEG Restreamer/IP MJPEG Restreamer (NuGet) netcore31.csproj
@@ -66,18 +66,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net472.csproj b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net472.csproj
index ff8b7a322f..982fc48210 100644
--- a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net472.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net472.csproj
@@ -39,18 +39,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net5.csproj b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net5.csproj
index 8ae05b2391..e69383c52a 100644
--- a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net5.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net5.csproj
@@ -39,18 +39,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net6.csproj b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net6.csproj
index 9cc1d729b8..a3df57f34d 100644
--- a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net6.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net6.csproj
@@ -39,18 +39,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net7.csproj b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net7.csproj
index 7b7fc565a6..0cf0c07204 100644
--- a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net7.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net7.csproj
@@ -39,18 +39,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net8.csproj b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net8.csproj
index f6de6d78a0..d49503b87c 100644
--- a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net8.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) net8.csproj
@@ -38,18 +38,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) netcore31.csproj b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) netcore31.csproj
index bb0ffa060e..2db4e0a3f3 100644
--- a/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WPF/CSharp/IP_Capture/IP Capture Demo WPF (NuGet) netcore31.csproj
@@ -39,18 +39,18 @@
-
-
-
+
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net472.csproj b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net472.csproj
index ec4351ab19..2f1ee17293 100644
--- a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net472.csproj
+++ b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net472.csproj
@@ -41,20 +41,20 @@
-
-
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net5.csproj b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net5.csproj
index 7adc8f8fad..56daf874d4 100644
--- a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net5.csproj
+++ b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net5.csproj
@@ -41,20 +41,20 @@
-
-
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net6.csproj b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net6.csproj
index a27e7841d3..b73e5de75b 100644
--- a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net6.csproj
+++ b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net6.csproj
@@ -41,20 +41,20 @@
-
-
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net7.csproj b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net7.csproj
index a30add3a3e..3e493d9b92 100644
--- a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net7.csproj
+++ b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net7.csproj
@@ -41,20 +41,20 @@
-
-
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net8.csproj b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net8.csproj
index a9801ba402..4fe7f56da3 100644
--- a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net8.csproj
+++ b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) net8.csproj
@@ -40,20 +40,20 @@
-
-
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) netcore31.csproj b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) netcore31.csproj
index 3553fca358..4c97f04711 100644
--- a/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WPF/CSharp/Main_Demo/Main Demo VC WPF (NuGet) netcore31.csproj
@@ -41,20 +41,20 @@
-
-
-
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net472.csproj b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net472.csproj
index a9c6e1bde2..f9fe097739 100644
--- a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net472.csproj
+++ b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net472.csproj
@@ -34,12 +34,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net5.csproj b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net5.csproj
index fb6d211a60..3490b822b7 100644
--- a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net5.csproj
+++ b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net5.csproj
@@ -34,12 +34,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net6.csproj b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net6.csproj
index 75a755a9d0..4e980eac87 100644
--- a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net6.csproj
+++ b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net6.csproj
@@ -34,12 +34,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net7.csproj b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net7.csproj
index 1d92459c2a..8839fd5665 100644
--- a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net7.csproj
+++ b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net7.csproj
@@ -34,12 +34,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net8.csproj b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net8.csproj
index ae176c525c..d2b6fc9b16 100644
--- a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net8.csproj
+++ b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) net8.csproj
@@ -33,12 +33,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) netcore31.csproj b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) netcore31.csproj
index c059b8bf97..21ea334c39 100644
--- a/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WPF/CSharp/Multiple IP Cameras Demo/Multiple IP Cameras Demo WPF (NuGet) netcore31.csproj
@@ -34,12 +34,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net472.csproj b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net472.csproj
index 2eaacbbbb7..d572ad7486 100644
--- a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net472.csproj
+++ b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net472.csproj
@@ -34,11 +34,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net5.csproj b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net5.csproj
index eeb02404cb..3cd0ec052d 100644
--- a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net5.csproj
+++ b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net5.csproj
@@ -34,11 +34,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net6.csproj b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net6.csproj
index 0cd45cd2eb..3bcfe4793c 100644
--- a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net6.csproj
+++ b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net6.csproj
@@ -34,11 +34,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net7.csproj b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net7.csproj
index be28f14684..a4c078a301 100644
--- a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net7.csproj
+++ b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net7.csproj
@@ -34,11 +34,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net8.csproj b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net8.csproj
index 43a014dbeb..f456c71d35 100644
--- a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net8.csproj
+++ b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) net8.csproj
@@ -33,11 +33,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) netcore31.csproj b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) netcore31.csproj
index b84c7dc874..603d688f35 100644
--- a/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WPF/CSharp/MultipleWebCameras/Multiple Web Cameras Demo WPF (NuGet) netcore31.csproj
@@ -34,11 +34,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net472.csproj b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net472.csproj
index baa464f198..3f35f9a861 100644
--- a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net472.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net5.csproj b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net5.csproj
index 64536c0e77..09b5371267 100644
--- a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net5.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net6.csproj b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net6.csproj
index 356f22c846..a4656cc721 100644
--- a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net6.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net7.csproj b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net7.csproj
index 999accf5e0..e07895cbb0 100644
--- a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net7.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net8.csproj b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net8.csproj
index 196ad2591e..7290af9718 100644
--- a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) net8.csproj
@@ -59,10 +59,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) netcore31.csproj b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) netcore31.csproj
index 44a34a6584..f7a59a165d 100644
--- a/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WPF/CSharp/Nvidia Maxine Demo/Nvidia Maxine VC Demo (NuGet) netcore31.csproj
@@ -52,10 +52,10 @@
1701;1702;MC3074;MSB4181
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net472.csproj b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net472.csproj
index ab655053d2..36dc8e54ad 100644
--- a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net472.csproj
+++ b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net472.csproj
@@ -39,11 +39,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net5.csproj b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net5.csproj
index 5b30cdc419..8d5a346505 100644
--- a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net5.csproj
+++ b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net5.csproj
@@ -39,11 +39,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net6.csproj b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net6.csproj
index 2d8d71be3a..c71e80167a 100644
--- a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net6.csproj
+++ b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net6.csproj
@@ -39,11 +39,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net7.csproj b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net7.csproj
index c3024a7be6..906a0a9687 100644
--- a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net7.csproj
+++ b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net7.csproj
@@ -39,11 +39,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net8.csproj b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net8.csproj
index cc4be5dc92..1011fb3188 100644
--- a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net8.csproj
+++ b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) net8.csproj
@@ -38,11 +38,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) netcore31.csproj b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) netcore31.csproj
index 294ad75db9..f0162e3a2c 100644
--- a/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WPF/CSharp/Screen_Capture/Screen Capture Demo WPF (NuGet) netcore31.csproj
@@ -39,11 +39,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net472.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net472.csproj
index 5b0dbb9bcd..b0d4a1fd57 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net472.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net472.csproj
@@ -42,12 +42,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net5.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net5.csproj
index c6b2074a84..d71952f79c 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net5.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net5.csproj
@@ -42,12 +42,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net6.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net6.csproj
index 8e202e0001..4ee67c3756 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net6.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net6.csproj
@@ -42,12 +42,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net7.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net7.csproj
index 30d01b4319..81640c4cc5 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net7.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net7.csproj
@@ -42,12 +42,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net8.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net8.csproj
index 9cb9ba17d5..e66d864a21 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net8.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) net8.csproj
@@ -41,12 +41,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) netcore31.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) netcore31.csproj
index 4af846ef03..0bfe1d52f0 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture MVVM/Simple Video Capture Demo WPF MVVM (NuGet) netcore31.csproj
@@ -42,12 +42,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net472.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net472.csproj
index a9247bff0a..ab55955ac2 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net472.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net472.csproj
@@ -39,12 +39,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net5.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net5.csproj
index ba0a5e8add..b7dee51a56 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net5.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net5.csproj
@@ -39,12 +39,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net6.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net6.csproj
index f9ace50ae3..f4c064abdf 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net6.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net6.csproj
@@ -39,12 +39,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net7.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net7.csproj
index b7f998c0e0..7a238de7a3 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net7.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net7.csproj
@@ -39,12 +39,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net8.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net8.csproj
index c5fa063c2b..5b0714c969 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net8.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) net8.csproj
@@ -38,12 +38,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) netcore31.csproj b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) netcore31.csproj
index 69254cb1b9..8948d53a35 100644
--- a/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WPF/CSharp/Simple Video Capture/Simple Video Capture Demo WPF (NuGet) netcore31.csproj
@@ -39,12 +39,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net472.csproj
index 2304604d50..211b2b376a 100644
--- a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net472.csproj
@@ -68,9 +68,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net5.csproj
index 4e5370acca..de897b40a5 100644
--- a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net5.csproj
@@ -68,9 +68,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net6.csproj
index 801563c89c..eb160354b7 100644
--- a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net6.csproj
@@ -68,9 +68,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net7.csproj
index c311371929..571da8274f 100644
--- a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net7.csproj
@@ -68,9 +68,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net8.csproj
index d902565a3c..ba6e67fcb7 100644
--- a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) net8.csproj
@@ -67,9 +67,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) netcore31.csproj
index 6d008fbac3..ed956eac12 100644
--- a/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Audio Capture/Audio Capture Demo (NuGet) netcore31.csproj
@@ -68,9 +68,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net472.csproj
index 039dd76c70..0f5800ac80 100644
--- a/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net472.csproj
@@ -17,10 +17,10 @@
-
-
-
-
+
+
+
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net6.csproj
index bba234e75e..6adbf110cf 100644
--- a/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net6.csproj
@@ -17,10 +17,10 @@
-
-
-
-
+
+
+
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net7.csproj
index 79648dae01..3084f6cfdc 100644
--- a/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net7.csproj
@@ -17,10 +17,10 @@
-
-
-
-
+
+
+
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net8.csproj
index d3e94d7d48..2390014364 100644
--- a/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) net8.csproj
@@ -16,10 +16,10 @@
-
-
-
-
+
+
+
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) netcore31.csproj
index 7da01011a4..4b36af3231 100644
--- a/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Camera Light Demo/Camera Light Demo (NuGet) netcore31.csproj
@@ -17,10 +17,10 @@
-
-
-
-
+
+
+
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net472.csproj
index 8cc4bce78b..56dc52f488 100644
--- a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net472.csproj
@@ -58,11 +58,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net5.csproj
index 286c4118c4..c715997ceb 100644
--- a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net5.csproj
@@ -58,11 +58,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net6.csproj
index 45fe319038..610524ea79 100644
--- a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net6.csproj
@@ -58,11 +58,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net7.csproj
index 2c424cc944..2e26a75382 100644
--- a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net7.csproj
@@ -58,11 +58,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net8.csproj
index cd0c2897cc..7c6e0df97c 100644
--- a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) net8.csproj
@@ -57,11 +57,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) netcore31.csproj
index 510959837a..dea9a7201e 100644
--- a/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Computer Vision/Computer Vision Demo (NuGet) netcore31.csproj
@@ -58,11 +58,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net472.csproj
index 942828f17d..ada331c5d6 100644
--- a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net472.csproj
@@ -65,10 +65,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net5.csproj
index b6f6e661c0..dcd675b9b4 100644
--- a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net5.csproj
@@ -65,10 +65,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net6.csproj
index b791e447a0..d1c906a444 100644
--- a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net6.csproj
@@ -65,10 +65,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net7.csproj
index a99e877d66..21bcce9d05 100644
--- a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net7.csproj
@@ -65,10 +65,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net8.csproj
index 5f5c16020c..e2b92d0d7c 100644
--- a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) net8.csproj
@@ -64,10 +64,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) netcore31.csproj
index 995451459f..8cd35ee8ca 100644
--- a/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/DV Capture/DV Capture Demo (NuGet) netcore31.csproj
@@ -65,10 +65,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net472.csproj
index 2268ecba3f..3470ac3685 100644
--- a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net472.csproj
@@ -65,9 +65,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net5.csproj
index 0c01022746..60f747396f 100644
--- a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net5.csproj
@@ -65,9 +65,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net6.csproj
index 9f0425b0ee..50896ed1ed 100644
--- a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net6.csproj
@@ -65,9 +65,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net7.csproj
index e1432b84d1..86c1aaf0f2 100644
--- a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net7.csproj
@@ -65,9 +65,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net8.csproj
index 0fb93dc03e..cb8eab28c0 100644
--- a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) net8.csproj
@@ -64,9 +64,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) netcore31.csproj
index 4ff6fd61a1..332216d109 100644
--- a/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Decklink Demo/Decklink Demo (NuGet) netcore31.csproj
@@ -65,9 +65,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net472.csproj
index 9ee7e85d6f..36e132cb9e 100644
--- a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net472.csproj
@@ -65,17 +65,17 @@
-
-
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net5.csproj
index 611ebda496..ba95448316 100644
--- a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net5.csproj
@@ -65,17 +65,17 @@
-
-
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net6.csproj
index baca1a565e..1bca20482f 100644
--- a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net6.csproj
@@ -65,17 +65,17 @@
-
-
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net7.csproj
index bbb9ed75cc..5521642d50 100644
--- a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net7.csproj
@@ -65,17 +65,17 @@
-
-
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net8.csproj
index eaba7505a7..8c2250d5de 100644
--- a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) net8.csproj
@@ -64,17 +64,17 @@
-
-
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) netcore31.csproj
index 90123c6c6c..b096ec46ea 100644
--- a/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/IP Capture/IP Capture Demo (NuGet) netcore31.csproj
@@ -65,17 +65,17 @@
-
-
+
+
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net472.csproj
index 9f3b3192ce..036ce1e686 100644
--- a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net472.csproj
@@ -67,14 +67,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net5.csproj
index d1ea63dd9c..59193f86d0 100644
--- a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net5.csproj
@@ -67,14 +67,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net6.csproj
index 3cc3c0c673..a5b9ab522f 100644
--- a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net6.csproj
@@ -67,14 +67,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net7.csproj
index 22a9d148bb..f652941137 100644
--- a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net7.csproj
@@ -67,14 +67,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net8.csproj
index 5d43de0903..70031d29e8 100644
--- a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) net8.csproj
@@ -67,14 +67,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) netcore31.csproj
index 2b514a842c..2f59c0eac4 100644
--- a/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Main Demo/Main Demo VC (NuGet) netcore31.csproj
@@ -67,14 +67,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net472.csproj
index 9c7886969a..3eb89b4d92 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net472.csproj
@@ -59,10 +59,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net5.csproj
index 7cbad52e16..c3b83f3bd2 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net5.csproj
@@ -59,10 +59,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net6.csproj
index db03d295b3..920a60371d 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net6.csproj
@@ -59,10 +59,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net7.csproj
index d67041dff8..36491a7fd8 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net7.csproj
@@ -59,10 +59,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net8.csproj
index 1d96e5a3e0..190abb93bb 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) net8.csproj
@@ -58,10 +58,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) netcore31.csproj
index 6729855738..eec3d629a8 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple IP cams/Multiple IP Cameras Demo (NuGet) netcore31.csproj
@@ -59,10 +59,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net472.csproj
index b1c26dde8e..895b465a82 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net472.csproj
@@ -59,9 +59,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net5.csproj
index 9214853303..4ca5691fcb 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net5.csproj
@@ -59,9 +59,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net6.csproj
index 1182f0561e..9ffe54a1d7 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net6.csproj
@@ -59,9 +59,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net7.csproj
index 6374c540d5..96e5388df0 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net7.csproj
@@ -59,9 +59,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net8.csproj
index 0fa7a46958..fedc4f4d4e 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) net8.csproj
@@ -58,9 +58,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) netcore31.csproj
index d51c96346c..f923d992e9 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple video streams/Multiple Video Streams Demo VC (NuGet) netcore31.csproj
@@ -59,9 +59,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net472.csproj
index af512483c4..d75ccbc271 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net472.csproj
@@ -59,9 +59,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net5.csproj
index 6a9a381a7c..a11d28fbdc 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net5.csproj
@@ -59,9 +59,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net6.csproj
index 99eac91227..8dc7ea8e93 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net6.csproj
@@ -59,9 +59,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net7.csproj
index 5a5e581f05..8bb3339e11 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net7.csproj
@@ -59,9 +59,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net8.csproj
index c65089bdf8..60e56e2d13 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) net8.csproj
@@ -58,9 +58,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) netcore31.csproj
index f166d0c08a..55deda46e9 100644
--- a/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Multiple web cams/Multiple Web Cameras Demo (NuGet) netcore31.csproj
@@ -59,9 +59,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net472.csproj
index 66eef2ebce..648c8f98bf 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net472.csproj
@@ -7,10 +7,10 @@
true
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net5.csproj
index dbde5e299a..ed55e4f7b8 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net5.csproj
@@ -7,10 +7,10 @@
true
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net6.csproj
index 14b45e8a3e..a83aa645f7 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net6.csproj
@@ -7,10 +7,10 @@
true
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net7.csproj
index 3d8ed50679..961068176a 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net7.csproj
@@ -7,10 +7,10 @@
true
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net8.csproj
index cf7c582ec6..a0265d4018 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) net8.csproj
@@ -7,10 +7,10 @@
true
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) netcore31.csproj
index 8bcff5a05c..65c854e85d 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Source/NDI Source (NuGet) netcore31.csproj
@@ -7,10 +7,10 @@
true
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net472 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net472 (NuGet).csproj
index 49b36b9aec..0af3fdfb31 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net472 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net472 (NuGet).csproj
@@ -16,11 +16,11 @@
-
-
+
+
-
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net5 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net5 (NuGet).csproj
index ed57d8deb4..26c73732d0 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net5 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net5 (NuGet).csproj
@@ -16,11 +16,11 @@
-
-
+
+
-
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net6 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net6 (NuGet).csproj
index 4a0e4e00b8..2bf59826ec 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net6 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net6 (NuGet).csproj
@@ -16,11 +16,11 @@
-
-
+
+
-
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net7 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net7 (NuGet).csproj
index 8b0de0cd47..a11883703b 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net7 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net7 (NuGet).csproj
@@ -16,11 +16,11 @@
-
-
+
+
-
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net8 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net8 (NuGet).csproj
index 72ec968bf6..e534340272 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net8 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer net8 (NuGet).csproj
@@ -15,11 +15,11 @@
-
-
+
+
-
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer netcore31 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer netcore31 (NuGet).csproj
index 99a5627f81..2dae77417d 100644
--- a/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer netcore31 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/NDI Streamer/NDI Streamer netcore31 (NuGet).csproj
@@ -16,11 +16,11 @@
-
-
+
+
-
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net472.csproj
index 78565e8b23..65704090e5 100644
--- a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net472.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net5.csproj
index 736c4a4c99..855c1456e9 100644
--- a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net5.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net6.csproj
index 26e122b27f..21408b589d 100644
--- a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net6.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net7.csproj
index fa8f23b647..67ff783c42 100644
--- a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net7.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net8.csproj
index b6184ee670..d0efd7ce74 100644
--- a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) net8.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) netcore31.csproj
index 1cc8a8e4a1..67f94953e4 100644
--- a/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Push Source Demo/Push Source Demo (NuGet) netcore31.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net472.csproj
index 791186b66f..efabaed974 100644
--- a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net472.csproj
@@ -65,10 +65,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net5.csproj
index d83efb7bea..fff10b2f2c 100644
--- a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net5.csproj
@@ -65,10 +65,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net6.csproj
index 136a36d69f..b0e4ae577c 100644
--- a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net6.csproj
@@ -65,10 +65,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net7.csproj
index c88e8c6e7c..59988014d3 100644
--- a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net7.csproj
@@ -65,10 +65,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net8.csproj
index cb6a3f5f73..f8836ae3d8 100644
--- a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) net8.csproj
@@ -64,10 +64,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) netcore31.csproj
index ba8195b4e5..0c871bc2a2 100644
--- a/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Screen Capture/Screen Capture Demo (NuGet) netcore31.csproj
@@ -65,10 +65,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net472.csproj
index 920c15bb48..2e3784405c 100644
--- a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net472.csproj
@@ -62,9 +62,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net5.csproj
index f66926c7e4..2f838c32e1 100644
--- a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net5.csproj
@@ -62,9 +62,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net6.csproj
index db4919a3f0..e0bca6a933 100644
--- a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net6.csproj
@@ -62,9 +62,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net7.csproj
index cae1c96f70..0629db0c27 100644
--- a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net7.csproj
@@ -62,9 +62,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net8.csproj
index f6b5de4580..20e84c9ee3 100644
--- a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) net8.csproj
@@ -61,9 +61,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) netcore31.csproj
index 96dbf463b0..e92df4bc8f 100644
--- a/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Separate Capture Demo/Separate Capture Demo (NuGet) netcore31.csproj
@@ -62,9 +62,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net472.csproj
index 6f691a9d02..1334f57959 100644
--- a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net472.csproj
@@ -66,11 +66,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net5.csproj
index 5b31b550e4..a2668e2e7c 100644
--- a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net5.csproj
@@ -66,11 +66,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net6.csproj
index f7ff2768d1..1d6fa52aa2 100644
--- a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net6.csproj
@@ -66,11 +66,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net7.csproj
index b607048705..1d04e8a2a5 100644
--- a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net7.csproj
@@ -66,11 +66,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net8.csproj
index e71059aa39..5d1a5871dd 100644
--- a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) net8.csproj
@@ -65,11 +65,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) netcore31.csproj
index 309b0f085c..9f4c31b837 100644
--- a/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Simple VideoCapture/Simple Video Capture Demo (NuGet) netcore31.csproj
@@ -66,11 +66,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net472.csproj
index f29d4ebda9..51081b98c1 100644
--- a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net472.csproj
@@ -67,13 +67,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net5.csproj
index f014137a59..93d860e319 100644
--- a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net5.csproj
@@ -67,13 +67,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net6.csproj
index 68880409d6..c3bf5c545b 100644
--- a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net6.csproj
@@ -67,13 +67,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net7.csproj
index da786484d1..32e3106b3f 100644
--- a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net7.csproj
@@ -67,13 +67,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net8.csproj
index 252014ec12..554b2354b5 100644
--- a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) net8.csproj
@@ -66,13 +66,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) netcore31.csproj
index 75d56bdf6e..a35474ce8b 100644
--- a/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Snippets Demo/Snippets Demo VC (NuGet) netcore31.csproj
@@ -67,13 +67,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net472.csproj
index e910a774ee..dff21b9563 100644
--- a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net472.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net5.csproj
index d58c54bccd..1b3fdf8c6d 100644
--- a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net5.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net6.csproj
index 110134da44..d599fecb1b 100644
--- a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net6.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net7.csproj
index e9b5b5b1e7..1f943c62bc 100644
--- a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net7.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net8.csproj
index 4f22089921..7d2a2398b5 100644
--- a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) net8.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) netcore31.csproj
index 00d69ae839..8ae216d9d5 100644
--- a/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Timeshift Demo/Timeshift Demo (NuGet) netcore31.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net472 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net472 (NuGet).csproj
index 307a823f19..a5aa440cbd 100644
--- a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net472 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net472 (NuGet).csproj
@@ -16,12 +16,12 @@
-
-
+
+
-
-
+
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net5 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net5 (NuGet).csproj
index fcc7d03d1e..50dbbef79f 100644
--- a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net5 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net5 (NuGet).csproj
@@ -16,12 +16,12 @@
-
-
+
+
-
-
+
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net6 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net6 (NuGet).csproj
index d80343eca7..4eb129fb9f 100644
--- a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net6 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net6 (NuGet).csproj
@@ -16,12 +16,12 @@
-
-
+
+
-
-
+
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net7 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net7 (NuGet).csproj
index 52ab064216..bf2d125899 100644
--- a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net7 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net7 (NuGet).csproj
@@ -16,12 +16,12 @@
-
-
+
+
-
-
+
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net8 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net8 (NuGet).csproj
index f3db942940..a382a684ec 100644
--- a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net8 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer net8 (NuGet).csproj
@@ -15,12 +15,12 @@
-
-
+
+
-
-
+
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer netcore31 (NuGet).csproj b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer netcore31 (NuGet).csproj
index b403778cda..0f40532636 100644
--- a/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer netcore31 (NuGet).csproj
+++ b/Video Capture SDK/WinForms/CSharp/UDP Streamer/UDP Streamer netcore31 (NuGet).csproj
@@ -16,12 +16,12 @@
-
-
+
+
-
-
+
+
visioforge_main_icon.ico
diff --git a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net472.csproj
index ac04d24520..5eef4e0bed 100644
--- a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net472.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net5.csproj
index c14183f4c7..f0a30a31d9 100644
--- a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net5.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net6.csproj
index 4d399584ca..8a0773f3ee 100644
--- a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net6.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net7.csproj
index 2c0a328a60..06b30fd2dd 100644
--- a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net7.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net8.csproj
index 4e9001fe1e..5b5ea98abd 100644
--- a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) net8.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) netcore31.csproj
index f614b1b26c..395d22e9eb 100644
--- a/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Video From Images Demo/Video From Images Demo (NuGet) netcore31.csproj
@@ -62,10 +62,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net472.csproj
index ff01320fe1..c134a23f2c 100644
--- a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net472.csproj
@@ -60,8 +60,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net5.csproj
index 77a7d9a214..3fb8cb11c8 100644
--- a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net5.csproj
@@ -60,8 +60,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net6.csproj
index 66a774e21d..2cfa2b217e 100644
--- a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net6.csproj
@@ -60,8 +60,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net7.csproj
index b6588c7e97..6552950a13 100644
--- a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net7.csproj
@@ -60,8 +60,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net8.csproj
index 2f353a7b4d..e3c9e0bc48 100644
--- a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) net8.csproj
@@ -59,8 +59,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) netcore31.csproj
index 2a6951de0e..7753c13284 100644
--- a/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Virtual Camera Streamer/Virtual Camera Streamer (NuGet) netcore31.csproj
@@ -60,8 +60,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net472.csproj
index 121cbbf627..b41930b1b4 100644
--- a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net472.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net5.csproj
index b085ee0e55..bc134e9ff2 100644
--- a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net5.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net6.csproj
index 3a942aebcf..339e1da8d2 100644
--- a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net6.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net7.csproj
index d208cdd92d..3feda44b0e 100644
--- a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net7.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net8.csproj
index 50749f1233..c4652f37b0 100644
--- a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) net8.csproj
@@ -60,10 +60,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) netcore31.csproj
index 009f459986..12765de898 100644
--- a/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/Window Capture/Window Capture (NuGet) netcore31.csproj
@@ -61,10 +61,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net472.csproj b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net472.csproj
index 3cbf2eaea9..588153323b 100644
--- a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net472.csproj
+++ b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net472.csproj
@@ -21,11 +21,11 @@
visioforge_main_icon.ico
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net5.csproj b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net5.csproj
index 0a1f90f139..d61d8f7150 100644
--- a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net5.csproj
+++ b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net5.csproj
@@ -21,11 +21,11 @@
visioforge_main_icon.ico
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net6.csproj b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net6.csproj
index ddcd73ba96..2dc0487815 100644
--- a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net6.csproj
+++ b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net6.csproj
@@ -21,11 +21,11 @@
visioforge_main_icon.ico
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net7.csproj b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net7.csproj
index 6e4c6a6206..4ecc169ff4 100644
--- a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net7.csproj
+++ b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net7.csproj
@@ -21,11 +21,11 @@
visioforge_main_icon.ico
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net8.csproj b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net8.csproj
index 8354b52971..b248f144b4 100644
--- a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net8.csproj
+++ b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) net8.csproj
@@ -20,11 +20,11 @@
visioforge_main_icon.ico
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) netcore31.csproj b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) netcore31.csproj
index c558ac0fba..6b98d3e5de 100644
--- a/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) netcore31.csproj
+++ b/Video Capture SDK/WinForms/CSharp/madVR demo/madVR Demo (NuGet) netcore31.csproj
@@ -21,11 +21,11 @@
visioforge_main_icon.ico
-
-
+
+
-
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB (NuGet) net461.vbproj b/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB (NuGet) net461.vbproj
index 72f4c7126c..9ad5bbbfc9 100644
--- a/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB (NuGet) net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB (NuGet) net461.vbproj
@@ -124,9 +124,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB (NuGet).vbproj b/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB (NuGet).vbproj
index 1cf5660c72..c67e0bf684 100644
--- a/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB (NuGet).vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB (NuGet).vbproj
@@ -124,9 +124,9 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB net461.vbproj b/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB net461.vbproj
index 608a0868c0..854d2b6db2 100644
--- a/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB net461.vbproj
@@ -105,8 +105,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB.vbproj b/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB.vbproj
index 63d4a57637..745187c548 100644
--- a/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Audio Capture/Audio Capture Demo VB.vbproj
@@ -105,8 +105,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Audio Capture/My Project/AssemblyInfo.vb b/Video Capture SDK/WinForms/VB.Net/Audio Capture/My Project/AssemblyInfo.vb
index 6d31cc104a..c5883bab29 100644
--- a/Video Capture SDK/WinForms/VB.Net/Audio Capture/My Project/AssemblyInfo.vb
+++ b/Video Capture SDK/WinForms/VB.Net/Audio Capture/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB (NuGet) net461.vbproj b/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB (NuGet) net461.vbproj
index 899672fcb0..981c81efb9 100644
--- a/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB (NuGet) net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB (NuGet) net461.vbproj
@@ -124,10 +124,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB (NuGet).vbproj b/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB (NuGet).vbproj
index 48dcd18a53..482ee26c6f 100644
--- a/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB (NuGet).vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB (NuGet).vbproj
@@ -124,10 +124,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB net461.vbproj b/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB net461.vbproj
index d8c3eb0e0d..8916034919 100644
--- a/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB net461.vbproj
@@ -124,8 +124,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB.vbproj b/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB.vbproj
index 7f04df206e..d75c22806e 100644
--- a/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/DV Capture/DV Capture Demo VB.vbproj
@@ -124,8 +124,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/DV Capture/My Project/AssemblyInfo.vb b/Video Capture SDK/WinForms/VB.Net/DV Capture/My Project/AssemblyInfo.vb
index c4c7cf9b56..fa9e57b4f3 100644
--- a/Video Capture SDK/WinForms/VB.Net/DV Capture/My Project/AssemblyInfo.vb
+++ b/Video Capture SDK/WinForms/VB.Net/DV Capture/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB (NuGet) net461.vbproj b/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB (NuGet) net461.vbproj
index f447fc988e..3409191d4f 100644
--- a/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB (NuGet) net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB (NuGet) net461.vbproj
@@ -128,13 +128,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB (NuGet).vbproj b/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB (NuGet).vbproj
index c2eeb68e88..c86decf48e 100644
--- a/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB (NuGet).vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB (NuGet).vbproj
@@ -128,13 +128,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB net461.vbproj b/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB net461.vbproj
index e85670f0d9..7dda6487fb 100644
--- a/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB net461.vbproj
@@ -128,8 +128,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB.vbproj b/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB.vbproj
index ef19bc8174..80e8dc28c6 100644
--- a/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/IP Capture/IP Capture Demo VB.vbproj
@@ -128,8 +128,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/IP Capture/My Project/AssemblyInfo.vb b/Video Capture SDK/WinForms/VB.Net/IP Capture/My Project/AssemblyInfo.vb
index ec178483c7..52be1c5e51 100644
--- a/Video Capture SDK/WinForms/VB.Net/IP Capture/My Project/AssemblyInfo.vb
+++ b/Video Capture SDK/WinForms/VB.Net/IP Capture/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB (NuGet) net461.vbproj b/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB (NuGet) net461.vbproj
index e36f017dcb..bb3c689bf6 100644
--- a/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB (NuGet) net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB (NuGet) net461.vbproj
@@ -128,14 +128,14 @@
15.5.36
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB (NuGet).vbproj b/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB (NuGet).vbproj
index 7f7e0281fd..64c11f182a 100644
--- a/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB (NuGet).vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB (NuGet).vbproj
@@ -128,14 +128,14 @@
15.5.36
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB net461.vbproj b/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB net461.vbproj
index 3b240f3699..e9a1e7e169 100644
--- a/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB net461.vbproj
@@ -125,8 +125,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB.vbproj b/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB.vbproj
index 99abbde697..6cbc0fee72 100644
--- a/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Main Demo/Main Demo VC VB.vbproj
@@ -125,8 +125,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Main Demo/My Project/AssemblyInfo.vb b/Video Capture SDK/WinForms/VB.Net/Main Demo/My Project/AssemblyInfo.vb
index a316bffb3f..a590abae85 100644
--- a/Video Capture SDK/WinForms/VB.Net/Main Demo/My Project/AssemblyInfo.vb
+++ b/Video Capture SDK/WinForms/VB.Net/Main Demo/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Screen Capture/My Project/AssemblyInfo.vb b/Video Capture SDK/WinForms/VB.Net/Screen Capture/My Project/AssemblyInfo.vb
index 861f8b8a6c..1417cd1cdc 100644
--- a/Video Capture SDK/WinForms/VB.Net/Screen Capture/My Project/AssemblyInfo.vb
+++ b/Video Capture SDK/WinForms/VB.Net/Screen Capture/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB (NuGet) net461.vbproj b/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB (NuGet) net461.vbproj
index 9430b190e0..541d442454 100644
--- a/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB (NuGet) net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB (NuGet) net461.vbproj
@@ -125,10 +125,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB (NuGet).vbproj b/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB (NuGet).vbproj
index ba0b5d6c24..1787ac72f1 100644
--- a/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB (NuGet).vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB (NuGet).vbproj
@@ -125,10 +125,10 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB net461.vbproj b/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB net461.vbproj
index f63ad2c3bc..906573c8e5 100644
--- a/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB net461.vbproj
@@ -125,8 +125,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB.vbproj b/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB.vbproj
index 30c35b3235..547fabd809 100644
--- a/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Screen Capture/Screen Capture Demo VB.vbproj
@@ -125,8 +125,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/My Project/AssemblyInfo.vb b/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/My Project/AssemblyInfo.vb
index 6c976bdf75..2d95e19fce 100644
--- a/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/My Project/AssemblyInfo.vb
+++ b/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB (NuGet) net461.vbproj b/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB (NuGet) net461.vbproj
index 5a276fa084..200ddcb452 100644
--- a/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB (NuGet) net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB (NuGet) net461.vbproj
@@ -124,11 +124,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB (NuGet).vbproj b/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB (NuGet).vbproj
index aa90d8bfe6..9493e055cc 100644
--- a/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB (NuGet).vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB (NuGet).vbproj
@@ -124,11 +124,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB net461.vbproj b/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB net461.vbproj
index 5bc5e69f08..dc19d67779 100644
--- a/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB net461.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB net461.vbproj
@@ -124,8 +124,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB.vbproj b/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB.vbproj
index 0093fd0e54..1db6dd134d 100644
--- a/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB.vbproj
+++ b/Video Capture SDK/WinForms/VB.Net/Simple Video Capture/Simple Video Capture Demo VB.vbproj
@@ -124,8 +124,8 @@
-
-
+
+
diff --git a/Video Capture SDK/WinUI/CSharp/Simple Video Capture Demo WinUI/Simple Video Capture Demo WinUI.csproj b/Video Capture SDK/WinUI/CSharp/Simple Video Capture Demo WinUI/Simple Video Capture Demo WinUI.csproj
index e58a032d4c..aa835a65cf 100644
--- a/Video Capture SDK/WinUI/CSharp/Simple Video Capture Demo WinUI/Simple Video Capture Demo WinUI.csproj
+++ b/Video Capture SDK/WinUI/CSharp/Simple Video Capture Demo WinUI/Simple Video Capture Demo WinUI.csproj
@@ -35,13 +35,13 @@
-
-
+
+
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net472.csproj
index 68a5b1f562..6eee9b2e73 100644
--- a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net472.csproj
@@ -59,8 +59,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net5.csproj
index af5463565f..b97bda1df5 100644
--- a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net5.csproj
@@ -59,8 +59,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net6.csproj
index 0dda2d412e..173babfbb9 100644
--- a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net6.csproj
@@ -62,8 +62,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net7.csproj
index ac6b87e354..7e143f1ba0 100644
--- a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net7.csproj
@@ -62,8 +62,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net8.csproj
index 61c236d2d2..8cd84f614e 100644
--- a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) net8.csproj
@@ -61,8 +61,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) netcore31.csproj
index feebb39ecb..f4081696f0 100644
--- a/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/face-detection/face-detection (NuGet) netcore31.csproj
@@ -59,8 +59,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net472.csproj
index 8999d08d74..a5e2c992d3 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net472.csproj
@@ -11,10 +11,10 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net5.csproj
index b5bf91a64e..0859cc5063 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net5.csproj
@@ -11,10 +11,10 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net6.csproj
index 39cb17c1b7..1aa87fcb4c 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net6.csproj
@@ -11,10 +11,10 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net7.csproj
index 8071013dcc..84d3395b9d 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net7.csproj
@@ -11,10 +11,10 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net8.csproj
index a9c833fb65..6fa5f2f041 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) net8.csproj
@@ -11,10 +11,10 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) netcore31.csproj
index 0a9700a2ad..abbf3b5337 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4 (NuGet) netcore31.csproj
@@ -11,10 +11,10 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net472.csproj
index 513500bcc0..cb6c276ed6 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net472.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net5.csproj
index e722610744..fc735bde25 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net5.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net6.csproj
index 59e7506f7f..7ccd81971b 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net6.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net7.csproj
index 97acfd7b6f..9b9a376bbd 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net7.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net8.csproj
index 09e9d3df93..89fc272075 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) net8.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) netcore31.csproj
index a7f0a30ae8..14daf1d406 100644
--- a/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview (NuGet) netcore31.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net472.csproj
index 54321e42c9..c4afe084e8 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net472.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net5.csproj
index e19e9f7e66..a1ba948633 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net5.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net6.csproj
index 2b841f348d..1a23f0afc3 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net6.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net7.csproj
index 49ada87013..c109d870bb 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net7.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net8.csproj
index 5515eac866..d05f227cb2 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) net8.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) netcore31.csproj
index d4b220d5a5..bf0bc9f2f7 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi (NuGet) netcore31.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net472.csproj
index 9151af3704..32a5a3a11e 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net472.csproj
@@ -7,9 +7,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net5.csproj
index 439e8b1dc9..090e004fde 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net5.csproj
@@ -7,9 +7,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net6.csproj
index 57f060b145..82ee1a8afe 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net6.csproj
@@ -7,9 +7,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net7.csproj
index 14cba0f040..3d8c354c7f 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net7.csproj
@@ -7,9 +7,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net8.csproj
index bc05966bcd..685f52f01b 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) net8.csproj
@@ -7,9 +7,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) netcore31.csproj
index f79db729b6..a69fe3ca25 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4 (NuGet) netcore31.csproj
@@ -7,9 +7,9 @@
true
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net472.csproj
index b573079026..e941c1988d 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net472.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net5.csproj
index 3a6240d71b..c4fadd7b61 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net5.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net6.csproj
index a13255689b..21d0d21202 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net6.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net7.csproj
index 0628c1f2b2..9bcda78003 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net7.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net8.csproj
index 508d769735..05227fd1e3 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) net8.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) netcore31.csproj
index b3aa27dbbd..0f2f300696 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture-wmv/screen-capture-wmv (NuGet) netcore31.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net472.csproj
index ffdc0b4183..2cdaf3e30a 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net472.csproj
@@ -59,9 +59,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net5.csproj
index 4c8eb9a2bf..2bd93d716d 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net5.csproj
@@ -59,9 +59,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net6.csproj
index 8319a02866..980e0500f4 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net6.csproj
@@ -62,9 +62,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net7.csproj
index 6f1919d2ef..0dc491d8bc 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net7.csproj
@@ -62,9 +62,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net8.csproj
index 5c37e1309d..f8daf00150 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) net8.csproj
@@ -61,9 +61,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) netcore31.csproj
index a9cf484673..041bd7c354 100644
--- a/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/screen-capture/screen-capture (NuGet) netcore31.csproj
@@ -59,9 +59,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net472.csproj
index 29ae660457..e533f31cb5 100644
--- a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net472.csproj
@@ -59,8 +59,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net5.csproj
index 19c3724ce0..822e013043 100644
--- a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net5.csproj
@@ -59,8 +59,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net6.csproj
index 33c327e665..d4eb6bb111 100644
--- a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net6.csproj
@@ -62,8 +62,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net7.csproj
index 4bb3f56df8..d3a6029942 100644
--- a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net7.csproj
@@ -62,8 +62,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net8.csproj
index 270f20c46f..2aa75dd868 100644
--- a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) net8.csproj
@@ -61,8 +61,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) netcore31.csproj
index 4ce5d223fd..432912e67d 100644
--- a/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/speaker-capture/speaker-capture (NuGet) netcore31.csproj
@@ -59,8 +59,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net472.csproj
index 05e3fbc304..2ac1f93142 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net472.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net5.csproj
index f6beb666b9..c191befb19 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net5.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net6.csproj
index c519acee45..b23aab55ec 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net6.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net7.csproj
index 54f0c1a11e..f19200d372 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net7.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net8.csproj
index dd51091c53..bbe5f35c0d 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) net8.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) netcore31.csproj
index 05b0487917..f12f3fbf39 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay (NuGet) netcore31.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net472.csproj
index f35c57e516..4868035cda 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net472.csproj
@@ -17,8 +17,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net5.csproj
index 6b42b49195..ec0f7c2398 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net5.csproj
@@ -17,8 +17,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net6.csproj
index 13d7ef84c6..dcfe85f5c6 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net6.csproj
@@ -17,7 +17,7 @@
-
-
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net7.csproj
index 58daaa4e9a..316e75331b 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net7.csproj
@@ -17,7 +17,7 @@
-
-
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net8.csproj
index e077c38baf..572ecf79ca 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) net8.csproj
@@ -17,7 +17,7 @@
-
-
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) netcore31.csproj
index 9bdf757f85..f92512bb90 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi (NuGet) netcore31.csproj
@@ -17,8 +17,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net472.csproj
index ba70605f9e..32bb71c463 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net472.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net5.csproj
index 95b1604c1e..0fe4b400a6 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net5.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net6.csproj
index 228d3644ca..80d6d48a70 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net6.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net7.csproj
index b3a9bc85c8..3dfab481cc 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net7.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net8.csproj
index 1bcc274496..1daa595084 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) net8.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) netcore31.csproj
index 8fa061580b..b800328df2 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4 (NuGet) netcore31.csproj
@@ -11,9 +11,9 @@
-
-
-
-
+
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net472.csproj
index 3e16c7659b..018198e690 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net472.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net5.csproj
index f0a4274e50..af906322b8 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net5.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net6.csproj
index 732822711b..3732a46607 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net6.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net7.csproj
index bbd28ed959..e282c724e7 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net7.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net8.csproj
index 87237dff79..74c158d20c 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) net8.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) netcore31.csproj
index 61323bc166..ede86fe075 100644
--- a/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv (NuGet) netcore31.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net472.csproj
index ab00d04635..82aabca0fb 100644
--- a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net472.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net5.csproj
index 576ca34d31..223eab062a 100644
--- a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net5.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net6.csproj
index 2755d72dbe..e5a4837f98 100644
--- a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net6.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net7.csproj
index b50c17065d..0b7d0313d9 100644
--- a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net7.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net8.csproj
index fc6ee46672..575d3db3c6 100644
--- a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) net8.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) netcore31.csproj
index 6c88cdab72..4bc7426193 100644
--- a/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture (NuGet) netcore31.csproj
@@ -11,8 +11,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net472.csproj b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net472.csproj
index 3af2739f9c..66e7ccc858 100644
--- a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net472.csproj
+++ b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net472.csproj
@@ -59,8 +59,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net5.csproj b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net5.csproj
index ac2018d73f..41954027be 100644
--- a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net5.csproj
+++ b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net5.csproj
@@ -59,8 +59,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net6.csproj b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net6.csproj
index 381bfd9305..3034f422c2 100644
--- a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net6.csproj
+++ b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net6.csproj
@@ -62,8 +62,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net7.csproj b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net7.csproj
index 0079e4f8c4..f1286ad7b1 100644
--- a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net7.csproj
+++ b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net7.csproj
@@ -62,8 +62,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net8.csproj b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net8.csproj
index ba869c09fb..966f1e43fd 100644
--- a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net8.csproj
+++ b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) net8.csproj
@@ -61,8 +61,8 @@
-
-
-
+
+
+
diff --git a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) netcore31.csproj b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) netcore31.csproj
index aaec76aa5a..9e50679c59 100644
--- a/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) netcore31.csproj
+++ b/Video Capture SDK/_CodeSnippets/webcam-preview/webcam-preview (NuGet) netcore31.csproj
@@ -59,8 +59,8 @@
-
-
-
+
+
+
diff --git a/Video Edit SDK X (crossplatform)/Avalonia/VideoJoinDemoAV/VideoJoinDemoAV/VideoJoinDemoAV.csproj b/Video Edit SDK X (crossplatform)/Avalonia/VideoJoinDemoAV/VideoJoinDemoAV/VideoJoinDemoAV.csproj
index 6f4ed87635..09e79236fd 100644
--- a/Video Edit SDK X (crossplatform)/Avalonia/VideoJoinDemoAV/VideoJoinDemoAV/VideoJoinDemoAV.csproj
+++ b/Video Edit SDK X (crossplatform)/Avalonia/VideoJoinDemoAV/VideoJoinDemoAV/VideoJoinDemoAV.csproj
@@ -25,7 +25,7 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/Console/CSharp/Video From Images X CLI/Video From Images VE X CLI.csproj b/Video Edit SDK X (crossplatform)/Console/CSharp/Video From Images X CLI/Video From Images VE X CLI.csproj
index e4096080d7..bbdc5f51ae 100644
--- a/Video Edit SDK X (crossplatform)/Console/CSharp/Video From Images X CLI/Video From Images VE X CLI.csproj
+++ b/Video Edit SDK X (crossplatform)/Console/CSharp/Video From Images X CLI/Video From Images VE X CLI.csproj
@@ -48,7 +48,7 @@
-
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net472.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net472.csproj
index 97c5a4a5cc..75d02d9a66 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net472.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net472.csproj
@@ -66,8 +66,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net5.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net5.csproj
index 5f21286224..45d0d41992 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net5.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net5.csproj
@@ -66,8 +66,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net6.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net6.csproj
index 5da5a301f2..e042392125 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net6.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net6.csproj
@@ -72,8 +72,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net7.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net7.csproj
index 5354d39705..67845a15aa 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net7.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net7.csproj
@@ -72,8 +72,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net8.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net8.csproj
index 4909d4460a..68c1bc6f81 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net8.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X net8.csproj
@@ -71,8 +71,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X netcore31.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X netcore31.csproj
index f52c2f8a7c..ba1d788a6d 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X netcore31.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Main Demo X/Main Demo VE X netcore31.csproj
@@ -66,8 +66,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net472.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net472.csproj
index 1ff1c00e33..f31b8ce95a 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net472.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net472.csproj
@@ -61,8 +61,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net5.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net5.csproj
index 5f45bcc3ba..b2026b9cb6 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net5.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net5.csproj
@@ -61,8 +61,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net6.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net6.csproj
index 03d3c8ed1f..40bd152fad 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net6.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net6.csproj
@@ -61,8 +61,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net7.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net7.csproj
index a2c4d841ac..060c951332 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net7.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net7.csproj
@@ -61,8 +61,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net8.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net8.csproj
index 1dca4b6130..8a0816d344 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net8.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X net8.csproj
@@ -60,8 +60,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X netcore31.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X netcore31.csproj
index 0d016839c3..20b7f7de40 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X netcore31.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video Join Demo X/Video Join Demo X netcore31.csproj
@@ -61,8 +61,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net472.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net472.csproj
index 900fb3a109..568fe2b2e3 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net472.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net472.csproj
@@ -67,8 +67,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net5.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net5.csproj
index 954267133b..1ae6ec8c7a 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net5.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net5.csproj
@@ -67,8 +67,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net6.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net6.csproj
index a405a1e8d4..014179e84e 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net6.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net6.csproj
@@ -71,8 +71,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net7.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net7.csproj
index f3a821fb1e..f7a7361907 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net7.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net7.csproj
@@ -71,8 +71,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net8.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net8.csproj
index adad453605..75c80ff742 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net8.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X net8.csproj
@@ -70,8 +70,8 @@
-
-
+
+
diff --git a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X netcore31.csproj b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X netcore31.csproj
index f94a9deb4a..e0c59000c5 100644
--- a/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X netcore31.csproj
+++ b/Video Edit SDK X (crossplatform)/WinForms/CSharp/Video from images X/Video From Images X netcore31.csproj
@@ -67,8 +67,8 @@
-
-
+
+
diff --git a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net472.csproj b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net472.csproj
index 5dbcd95aa5..5c00a45b96 100644
--- a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net472.csproj
+++ b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net472.csproj
@@ -28,12 +28,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net5.csproj b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net5.csproj
index 7783ae9487..8bbe94b0cc 100644
--- a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net5.csproj
+++ b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net5.csproj
@@ -28,12 +28,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net6.csproj b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net6.csproj
index e3f3ea1fb2..c6f5898c61 100644
--- a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net6.csproj
+++ b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net6.csproj
@@ -28,12 +28,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net7.csproj b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net7.csproj
index 632f70f0a5..14b99fe6eb 100644
--- a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net7.csproj
+++ b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net7.csproj
@@ -28,12 +28,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net8.csproj b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net8.csproj
index 916803dd7c..4515a20d03 100644
--- a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net8.csproj
+++ b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) net8.csproj
@@ -27,12 +27,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) netcore31.csproj b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) netcore31.csproj
index 2e713c0173..8e5ff9269b 100644
--- a/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) netcore31.csproj
+++ b/Video Edit SDK/Console/CSharp/Main Demo CLI/Main Demo VE CLI (NuGet) netcore31.csproj
@@ -28,12 +28,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net472.csproj b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net472.csproj
index ebdce1692b..620db08083 100644
--- a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net472.csproj
+++ b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net472.csproj
@@ -29,12 +29,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net5.csproj b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net5.csproj
index 55b38ed470..5f50d635e0 100644
--- a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net5.csproj
+++ b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net5.csproj
@@ -29,12 +29,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net6.csproj b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net6.csproj
index c607a56ee2..fd49266731 100644
--- a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net6.csproj
+++ b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net6.csproj
@@ -29,12 +29,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net7.csproj b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net7.csproj
index e32a6f58e7..4185a3bfe3 100644
--- a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net7.csproj
+++ b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net7.csproj
@@ -29,12 +29,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net8.csproj b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net8.csproj
index ea0505e708..7d2aec4b4e 100644
--- a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net8.csproj
+++ b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) net8.csproj
@@ -28,12 +28,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) netcore31.csproj b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) netcore31.csproj
index c084296659..62d320d73d 100644
--- a/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) netcore31.csproj
+++ b/Video Edit SDK/Console/CSharp/Video From Images CLI/Video From Images VE CLI (NuGet) netcore31.csproj
@@ -29,12 +29,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net472.csproj b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net472.csproj
index f30ec6a731..aaa6c78caf 100644
--- a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net472.csproj
+++ b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net472.csproj
@@ -42,14 +42,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net5.csproj b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net5.csproj
index c70754e1f9..4a1623e872 100644
--- a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net5.csproj
+++ b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net5.csproj
@@ -42,14 +42,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net6.csproj b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net6.csproj
index c95e3f8c5c..d3d30af02a 100644
--- a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net6.csproj
+++ b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net6.csproj
@@ -42,14 +42,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net7.csproj b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net7.csproj
index b7cc4cf1a5..040f240103 100644
--- a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net7.csproj
+++ b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net7.csproj
@@ -42,14 +42,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net8.csproj b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net8.csproj
index d653e873b7..9223e35b8f 100644
--- a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net8.csproj
+++ b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) net8.csproj
@@ -41,14 +41,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) netcore31.csproj b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) netcore31.csproj
index acc183d96f..ce9dc98eaf 100644
--- a/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) netcore31.csproj
+++ b/Video Edit SDK/WPF/CSharp/Main Demo/Main Demo VE WPF (NuGet) netcore31.csproj
@@ -42,14 +42,14 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net472.csproj b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net472.csproj
index 433ef3d6bc..3428540e5b 100644
--- a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net472.csproj
+++ b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net472.csproj
@@ -11,11 +11,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net5.csproj b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net5.csproj
index 8d9bbe63e2..981fd4da0e 100644
--- a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net5.csproj
+++ b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net5.csproj
@@ -11,11 +11,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net6.csproj b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net6.csproj
index e6cac4d9cc..d31b1a57ab 100644
--- a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net6.csproj
+++ b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net6.csproj
@@ -11,11 +11,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net7.csproj b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net7.csproj
index 1a76a642fc..729eb88c19 100644
--- a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net7.csproj
+++ b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net7.csproj
@@ -11,11 +11,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net8.csproj b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net8.csproj
index 2b463abfff..9ceaaba25b 100644
--- a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net8.csproj
+++ b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) net8.csproj
@@ -10,11 +10,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) netcore31.csproj b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) netcore31.csproj
index b527b28531..d87131457c 100644
--- a/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) netcore31.csproj
+++ b/Video Edit SDK/WPF/CSharp/Multiple Audio Tracks Demo/Multiple Audio Tracks Demo (NuGet) netcore31.csproj
@@ -11,11 +11,11 @@
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net472.csproj b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net472.csproj
index db41edb11d..3cf8d44139 100644
--- a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net472.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net472.csproj
@@ -14,11 +14,11 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net5.csproj b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net5.csproj
index 2aa65a37f9..eae3428d37 100644
--- a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net5.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net5.csproj
@@ -15,11 +15,11 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net6.csproj b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net6.csproj
index 6e039e2aa9..98105ef7c8 100644
--- a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net6.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net6.csproj
@@ -15,11 +15,11 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net7.csproj b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net7.csproj
index e64c8ea431..e4fd4a1020 100644
--- a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net7.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net7.csproj
@@ -15,11 +15,11 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net8.csproj b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net8.csproj
index 8cda2aac46..28729d34fb 100644
--- a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net8.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) net8.csproj
@@ -15,11 +15,11 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) netcore31.csproj b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) netcore31.csproj
index f55aa081df..286730085d 100644
--- a/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) netcore31.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Audio Extractor/Audio Extractor (NuGet) netcore31.csproj
@@ -15,11 +15,11 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net472.csproj b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net472.csproj
index cc66ae4bb9..6b35ab3ba8 100644
--- a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net472.csproj
+++ b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net472.csproj
@@ -8,10 +8,10 @@
visioforge_main_icon.ico
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net5.csproj b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net5.csproj
index 8faca4d0db..f5d5ac54e0 100644
--- a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net5.csproj
+++ b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net5.csproj
@@ -8,10 +8,10 @@
visioforge_main_icon.ico
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net6.csproj b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net6.csproj
index 0f1f324b75..29e7880c16 100644
--- a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net6.csproj
+++ b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net6.csproj
@@ -7,10 +7,10 @@
visioforge_main_icon.ico
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net7.csproj b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net7.csproj
index d75a3f523b..8efb21795d 100644
--- a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net7.csproj
+++ b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net7.csproj
@@ -8,10 +8,10 @@
visioforge_main_icon.ico
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net8.csproj b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net8.csproj
index e3692b3199..e382c8d709 100644
--- a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net8.csproj
+++ b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) net8.csproj
@@ -8,10 +8,10 @@
visioforge_main_icon.ico
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) netcore31.csproj b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) netcore31.csproj
index db692e82a6..eeedb7c7a5 100644
--- a/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) netcore31.csproj
+++ b/Video Edit SDK/WinForms/CSharp/File Encryptor/File Encryptor (NuGet) netcore31.csproj
@@ -8,10 +8,10 @@
visioforge_main_icon.ico
-
-
-
-
-
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net472.csproj b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net472.csproj
index 1dedfd4bfd..3f46b7eb78 100644
--- a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net472.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net472.csproj
@@ -66,13 +66,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net5.csproj b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net5.csproj
index e676c6c51b..9f4ed591ea 100644
--- a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net5.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net5.csproj
@@ -66,13 +66,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net6.csproj b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net6.csproj
index 8fefbbc9c3..39ed98282c 100644
--- a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net6.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net6.csproj
@@ -66,13 +66,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net7.csproj b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net7.csproj
index 27add89cf2..e2b20dba2a 100644
--- a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net7.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net7.csproj
@@ -66,13 +66,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net8.csproj b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net8.csproj
index 50bf58ac2d..bd80683ed8 100644
--- a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net8.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) net8.csproj
@@ -65,13 +65,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) netcore31.csproj b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) netcore31.csproj
index b084e70869..560121f411 100644
--- a/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) netcore31.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Main Demo/Main Demo VE (NuGet) netcore31.csproj
@@ -66,13 +66,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net472.csproj b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net472.csproj
index f4011d1b06..3a5a3de132 100644
--- a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net472.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net472.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net5.csproj b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net5.csproj
index f190fe38b4..7dfb27ad6e 100644
--- a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net5.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net5.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net6.csproj b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net6.csproj
index 6b6d14ec04..53888fb88b 100644
--- a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net6.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net6.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net7.csproj b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net7.csproj
index d4e19b802d..0f63a8cdb3 100644
--- a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net7.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net7.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net8.csproj b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net8.csproj
index 5fa43aa5f6..ef3fe3426b 100644
--- a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net8.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) net8.csproj
@@ -60,13 +60,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) netcore31.csproj b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) netcore31.csproj
index e75b20c634..024e7f298b 100644
--- a/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) netcore31.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video Join Demo/Video Join Demo (NuGet) netcore31.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net472.csproj b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net472.csproj
index 678eaa9eb5..de8af99af5 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net472.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net472.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net5.csproj b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net5.csproj
index 1720472f06..9c3c2e0ddb 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net5.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net5.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net6.csproj b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net6.csproj
index 1544369a11..cc9fa3f680 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net6.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net6.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net7.csproj b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net7.csproj
index c072ae9141..58abb71ed5 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net7.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net7.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net8.csproj b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net8.csproj
index 4e2c603eda..028a9b0ff9 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net8.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) net8.csproj
@@ -60,13 +60,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) netcore31.csproj b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) netcore31.csproj
index c67d3216db..b047a52aa6 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) netcore31.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images in memory/Video From Images In Memory Demo (NuGet) netcore31.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net472.csproj b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net472.csproj
index 0cb8d72a5a..689500fcdb 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net472.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net472.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net5.csproj b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net5.csproj
index e8cd372cd4..6b31fa1938 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net5.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net5.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net6.csproj b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net6.csproj
index 1faad3d636..c82d016818 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net6.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net6.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net7.csproj b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net7.csproj
index 31d1f717b5..09b5c30257 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net7.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net7.csproj
@@ -60,13 +60,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net8.csproj b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net8.csproj
index 4fccc9674f..731b5c8593 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net8.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) net8.csproj
@@ -60,13 +60,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) netcore31.csproj b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) netcore31.csproj
index 6568876ac0..9272513493 100644
--- a/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) netcore31.csproj
+++ b/Video Edit SDK/WinForms/CSharp/Video from images/Video From Images (NuGet) netcore31.csproj
@@ -61,13 +61,13 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/VB.Net/Main Demo/Main Demo VE VB (NuGet).vbproj b/Video Edit SDK/WinForms/VB.Net/Main Demo/Main Demo VE VB (NuGet).vbproj
index 6819bbca8b..3fa97eeb01 100644
--- a/Video Edit SDK/WinForms/VB.Net/Main Demo/Main Demo VE VB (NuGet).vbproj
+++ b/Video Edit SDK/WinForms/VB.Net/Main Demo/Main Demo VE VB (NuGet).vbproj
@@ -124,13 +124,13 @@
15.5.36
-
-
-
-
-
-
-
+
+
+
+
+
+
+
diff --git a/Video Edit SDK/WinForms/VB.Net/Main Demo/Main Demo VE VB.vbproj b/Video Edit SDK/WinForms/VB.Net/Main Demo/Main Demo VE VB.vbproj
index a960bf4de0..cf3e9f66f0 100644
--- a/Video Edit SDK/WinForms/VB.Net/Main Demo/Main Demo VE VB.vbproj
+++ b/Video Edit SDK/WinForms/VB.Net/Main Demo/Main Demo VE VB.vbproj
@@ -121,8 +121,8 @@
-
-
+
+
diff --git a/Video Edit SDK/WinForms/VB.Net/Main Demo/My Project/AssemblyInfo.vb b/Video Edit SDK/WinForms/VB.Net/Main Demo/My Project/AssemblyInfo.vb
index 244a18ebf6..4fb27a54f9 100644
--- a/Video Edit SDK/WinForms/VB.Net/Main Demo/My Project/AssemblyInfo.vb
+++ b/Video Edit SDK/WinForms/VB.Net/Main Demo/My Project/AssemblyInfo.vb
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
'
-
-
+
+
diff --git a/changelog.md b/changelog.md
index 0c7343bc93..3aae5d4568 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,9 +1,14 @@
# Changelog
+## 15.8.9
+
+* [X-engines] Improved MAUI video rendering speed
+* [X-engines] Resolved MAUI media playback issues (decoding) in MAUI Android
+
## 15.8.7
* [X-engines] Resolved an issue with the H264 webcam sources (sometimes not connected)
-* [X-engines] Resolved an issue with audio streams playback in Live VideoCompositor engine
+* [X-engines] Resolved an issue with audio stream playback in the Live VideoCompositor engine
## 15.8.5