diff --git a/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net7.csproj b/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net7.csproj index aed04e4f91..9cf4480699 100644 --- a/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net7.csproj +++ b/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net7.csproj @@ -11,9 +11,9 @@ MediaPlayer - - - + + + diff --git a/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net8.csproj b/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net8.csproj index 2c8e2ba594..c40ade55d1 100644 --- a/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net8.csproj +++ b/Media Blocks SDK/Android/MediaPlayer/MediaPlayer net8.csproj @@ -11,9 +11,9 @@ MediaPlayer - - - + + + 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 379b14155f..8e1afbfb6f 100644 --- a/Media Blocks SDK/Android/RTSP Client/RTSP Client net7.csproj +++ b/Media Blocks SDK/Android/RTSP Client/RTSP Client net7.csproj @@ -11,9 +11,9 @@ 1.0 - - - + + + 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 5ebb5b66fa..e4de9f9ae0 100644 --- a/Media Blocks SDK/Android/RTSP Client/RTSP Client net8.csproj +++ b/Media Blocks SDK/Android/RTSP Client/RTSP Client net8.csproj @@ -11,9 +11,9 @@ 1.0 - - - + + + 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 eb6402492e..2ee018b1fb 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 @@ -11,9 +11,9 @@ 1.0 - - - + + + 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 3ff93c952a..aca2952f17 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 @@ -11,9 +11,9 @@ 1.0 - - - + + + diff --git a/Media Blocks SDK/Avalonia/Simple Player/SimplePlayerAMB.csproj b/Media Blocks SDK/Avalonia/Simple Player/SimplePlayerAMB.csproj index ff8dc94c1e..807d6a73dd 100644 --- a/Media Blocks SDK/Avalonia/Simple Player/SimplePlayerAMB.csproj +++ b/Media Blocks SDK/Avalonia/Simple Player/SimplePlayerAMB.csproj @@ -37,7 +37,7 @@ - - + + diff --git a/Media Blocks SDK/Avalonia/Simple Video Capture/SimpleVideoCaptureAMB.csproj b/Media Blocks SDK/Avalonia/Simple Video Capture/SimpleVideoCaptureAMB.csproj index 8569e9845c..6695c1befd 100644 --- a/Media Blocks SDK/Avalonia/Simple Video Capture/SimpleVideoCaptureAMB.csproj +++ b/Media Blocks SDK/Avalonia/Simple Video Capture/SimpleVideoCaptureAMB.csproj @@ -36,7 +36,7 @@ - - + + diff --git a/Media Blocks SDK/Console/HLS Streamer/HLSStreamer.csproj b/Media Blocks SDK/Console/HLS Streamer/HLSStreamer.csproj index 658a9f06f8..30e3229dc2 100644 --- a/Media Blocks SDK/Console/HLS Streamer/HLSStreamer.csproj +++ b/Media Blocks SDK/Console/HLS Streamer/HLSStreamer.csproj @@ -6,7 +6,7 @@ app.manifest - + 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 0be254e18f..3dd30af1bc 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,7 +23,7 @@ None - + diff --git a/Media Blocks SDK/Console/RTSPView/RTSPView.csproj b/Media Blocks SDK/Console/RTSPView/RTSPView.csproj index a6051c046d..3c329b0fe6 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 29fe97df72..f7461d7b21 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/MobileStreamer/MainPage.xaml.cs b/Media Blocks SDK/MAUI/MobileStreamer/MainPage.xaml.cs index 764c6beb01..5aa290750b 100644 --- a/Media Blocks SDK/MAUI/MobileStreamer/MainPage.xaml.cs +++ b/Media Blocks SDK/MAUI/MobileStreamer/MainPage.xaml.cs @@ -67,13 +67,14 @@ private void CreateEngine() { _pipeline = new MediaBlocksPipeline(); -#if __IOS__ && !__MACCATALYST__ || __ANDROID__ - var vv = videoView.Handler.PlatformView; - _videoRenderer = new VideoRendererBlock(_pipeline, (IVideoView)vv) { IsSync = false }; + IVideoView vv; +#if __MACCATALYST__ + vv = videoView; #else - _videoRenderer = new VideoRendererBlock(_pipeline, videoView) { IsSync = false }; + vv = videoView.GetVideoView(); #endif + _videoRenderer = new VideoRendererBlock(_pipeline, vv) { IsSync = false }; _videoRenderer.IsSync = false; _pipeline.OnError += Core_OnError; diff --git a/Media Blocks SDK/MAUI/MobileStreamer/MobileStreamerMB8.csproj b/Media Blocks SDK/MAUI/MobileStreamer/MobileStreamerMB8.csproj index e49cfe173e..71dfaf19c2 100644 --- a/Media Blocks SDK/MAUI/MobileStreamer/MobileStreamerMB8.csproj +++ b/Media Blocks SDK/MAUI/MobileStreamer/MobileStreamerMB8.csproj @@ -42,7 +42,7 @@ - + @@ -54,8 +54,8 @@ - - + + diff --git a/Media Blocks SDK/MAUI/RTSPViewer/RTSPViewerMB.csproj b/Media Blocks SDK/MAUI/RTSPViewer/RTSPViewerMB.csproj index af556b774b..a2c4241425 100644 --- a/Media Blocks SDK/MAUI/RTSPViewer/RTSPViewerMB.csproj +++ b/Media Blocks SDK/MAUI/RTSPViewer/RTSPViewerMB.csproj @@ -40,20 +40,20 @@ - - + + - + - + diff --git a/Media Blocks SDK/MAUI/RTSPViewer/RTSPViewerMB8.csproj b/Media Blocks SDK/MAUI/RTSPViewer/RTSPViewerMB8.csproj index e36e1bb54e..ccdd4a6ac4 100644 --- a/Media Blocks SDK/MAUI/RTSPViewer/RTSPViewerMB8.csproj +++ b/Media Blocks SDK/MAUI/RTSPViewer/RTSPViewerMB8.csproj @@ -42,20 +42,20 @@ - - + + - + - + diff --git a/Media Blocks SDK/MAUI/ScreenCaptureMB/MainPage.xaml.cs b/Media Blocks SDK/MAUI/ScreenCaptureMB/MainPage.xaml.cs index 9d4170e197..e2f595373d 100644 --- a/Media Blocks SDK/MAUI/ScreenCaptureMB/MainPage.xaml.cs +++ b/Media Blocks SDK/MAUI/ScreenCaptureMB/MainPage.xaml.cs @@ -79,13 +79,15 @@ private async Task CreateEngineAsync() _mp4Sink = new MP4SinkBlock(new MP4SinkSettings(filename)); _h264Encoder = new H264EncoderBlock(); -#if __IOS__ && !__MACCATALYST__ || __ANDROID__ - var vv = videoView.Handler.PlatformView; - _videoRenderer = new VideoRendererBlock(_pipeline, (IVideoView)vv) { IsSync = false }; + IVideoView vv; +#if __MACCATALYST__ + vv = videoView; #else - _videoRenderer = new VideoRendererBlock(_pipeline, videoView) { IsSync = false }; + vv = videoView.GetVideoView(); #endif + _videoRenderer = new VideoRendererBlock(_pipeline, vv) { IsSync = false }; + _pipeline.Connect(_source.Output, _videoTee.Input); _pipeline.Connect(_videoTee.Outputs[0], _videoRenderer.Input); diff --git a/Media Blocks SDK/MAUI/ScreenCaptureMB/ScreenCaptureMB.csproj b/Media Blocks SDK/MAUI/ScreenCaptureMB/ScreenCaptureMB.csproj index 344d02ac6c..6cb918e788 100644 --- a/Media Blocks SDK/MAUI/ScreenCaptureMB/ScreenCaptureMB.csproj +++ b/Media Blocks SDK/MAUI/ScreenCaptureMB/ScreenCaptureMB.csproj @@ -68,8 +68,8 @@ - - + + diff --git a/Media Blocks SDK/MAUI/ScreenCaptureMB/ScreenCaptureMB8.csproj b/Media Blocks SDK/MAUI/ScreenCaptureMB/ScreenCaptureMB8.csproj index 91c8961fee..0a5245b9b3 100644 --- a/Media Blocks SDK/MAUI/ScreenCaptureMB/ScreenCaptureMB8.csproj +++ b/Media Blocks SDK/MAUI/ScreenCaptureMB/ScreenCaptureMB8.csproj @@ -72,8 +72,8 @@ - - + + diff --git a/Media Blocks SDK/MAUI/SimpleCapture/MainPage.xaml.cs b/Media Blocks SDK/MAUI/SimpleCapture/MainPage.xaml.cs index 58355bee34..70b4b6a06c 100644 --- a/Media Blocks SDK/MAUI/SimpleCapture/MainPage.xaml.cs +++ b/Media Blocks SDK/MAUI/SimpleCapture/MainPage.xaml.cs @@ -81,13 +81,15 @@ private void CreateEngine() { _pipeline = new MediaBlocksPipeline(); -#if __IOS__ && !__MACCATALYST__ || __ANDROID__ - var vv = videoView.Handler.PlatformView; - _videoRenderer = new VideoRendererBlock(_pipeline, (IVideoView)vv) { IsSync = false }; + IVideoView vv; +#if __MACCATALYST__ + vv = videoView; #else - _videoRenderer = new VideoRendererBlock(_pipeline, videoView) { IsSync = false }; + vv = videoView.GetVideoView(); #endif + _videoRenderer = new VideoRendererBlock(_pipeline, vv) { IsSync = false }; + _pipeline.OnError += Core_OnError; } diff --git a/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB.csproj b/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB.csproj index 060e80de4c..8999953cef 100644 --- a/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB.csproj +++ b/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB.csproj @@ -61,12 +61,12 @@ - + - + @@ -83,8 +83,8 @@ - - + + diff --git a/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB8.csproj b/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB8.csproj index c79d0758f5..5fea28704e 100644 --- a/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB8.csproj +++ b/Media Blocks SDK/MAUI/SimpleCapture/SimpleCaptureMB8.csproj @@ -70,7 +70,7 @@ - + @@ -91,8 +91,8 @@ - - + + diff --git a/Media Blocks SDK/MAUI/SimplePlayer/MainPage.xaml.cs b/Media Blocks SDK/MAUI/SimplePlayer/MainPage.xaml.cs index 3a324f1237..54956b9cbf 100644 --- a/Media Blocks SDK/MAUI/SimplePlayer/MainPage.xaml.cs +++ b/Media Blocks SDK/MAUI/SimplePlayer/MainPage.xaml.cs @@ -64,13 +64,14 @@ private async Task CreateEngineAsync() _source = new UniversalSourceBlock(await UniversalSourceSettings.CreateAsync(_filename)); -#if __IOS__ && !__MACCATALYST__ || __ANDROID__ - var vv = videoView.Handler.PlatformView; - _videoRenderer = new VideoRendererBlock(_pipeline, (IVideoView)vv); + IVideoView vv; +#if __MACCATALYST__ + vv = videoView; #else - _videoRenderer = new VideoRendererBlock(_pipeline, videoView); + vv = videoView.GetVideoView(); #endif + _videoRenderer = new VideoRendererBlock(_pipeline, vv); _audioRenderer = new AudioRendererBlock(); _pipeline.Connect(_source.VideoOutput, _videoRenderer.Input); diff --git a/Media Blocks SDK/MAUI/SimplePlayer/SimplePlayerMB.csproj b/Media Blocks SDK/MAUI/SimplePlayer/SimplePlayerMB.csproj index 8c3a2a7e51..7137889256 100644 --- a/Media Blocks SDK/MAUI/SimplePlayer/SimplePlayerMB.csproj +++ b/Media Blocks SDK/MAUI/SimplePlayer/SimplePlayerMB.csproj @@ -60,7 +60,7 @@ - + @@ -82,8 +82,8 @@ --> - - + + diff --git a/Media Blocks SDK/MAUI/SimplePlayer/SimplePlayerMB8.csproj b/Media Blocks SDK/MAUI/SimplePlayer/SimplePlayerMB8.csproj index f11f7f39af..1cd7838976 100644 --- a/Media Blocks SDK/MAUI/SimplePlayer/SimplePlayerMB8.csproj +++ b/Media Blocks SDK/MAUI/SimplePlayer/SimplePlayerMB8.csproj @@ -58,7 +58,7 @@ - + @@ -80,8 +80,8 @@ --> - - + + diff --git a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net472.csproj index 5b1b84bc8d..619ce5f98b 100644 --- a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net472.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net5.csproj index e897e975eb..770395e2bd 100644 --- a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net5.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net6.csproj index 5fd6609686..38af9419de 100644 --- a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net6.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net7.csproj index a6d3cedfa6..fe225cdadd 100644 --- a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net7.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net8.csproj index 9c113272a2..b7b68648a4 100644 --- a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo net8.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo netcore31.csproj index 04b0f158fd..f540ab3471 100644 --- a/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/AlliedVision Source Demo/AlliedVision Source Demo netcore31.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net472.csproj b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net472.csproj index d8a4afa8f9..b7876b66ea 100644 --- a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net472.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net5.csproj b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net5.csproj index 4162133ee8..929cd727a9 100644 --- a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net5.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net6.csproj b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net6.csproj index abe8932eae..1896ba45c7 100644 --- a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net6.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net7.csproj b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net7.csproj index 70d2662524..b1e9d81052 100644 --- a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net7.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net8.csproj b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net8.csproj index 47b413795c..7cbc81cbe4 100644 --- a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB net8.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB netcore31.csproj index 8fb137e3d6..def0bba457 100644 --- a/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/Audio Capture Demo/Audio Capture Demo MB netcore31.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net472.csproj index 9250997785..43f64dbdeb 100644 --- a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net472.csproj @@ -15,9 +15,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net5.csproj index cb09d2d804..f4331949fa 100644 --- a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net5.csproj @@ -15,9 +15,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net6.csproj index 5fed4f2d28..9670283d9f 100644 --- a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net6.csproj @@ -16,9 +16,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net7.csproj index 991c4bce22..e14be1b76f 100644 --- a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net7.csproj @@ -16,9 +16,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net8.csproj index 567a045797..eba80170c7 100644 --- a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo net8.csproj @@ -16,9 +16,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo netcore31.csproj index 8f1f5badd8..ceef4d20fa 100644 --- a/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/Basler Source Demo/Basler Source Demo netcore31.csproj @@ -16,9 +16,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net472.csproj index 9e7095a053..160068ad52 100644 --- a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net472.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net5.csproj index 487bf3ca8a..ec08933a5e 100644 --- a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net5.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net6.csproj index db633ce5b2..063abd2d3f 100644 --- a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net6.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net7.csproj index 7cf184bf39..148f79eb34 100644 --- a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net7.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net8.csproj index ef84446e4c..455c3dd423 100644 --- a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo net8.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo netcore31.csproj index e0e7349181..09a16b578b 100644 --- a/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/Bridge Demo/Bridge Demo netcore31.csproj @@ -10,8 +10,8 @@ - - + + 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 de5f5201e2..ae0a38ce1e 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 0470e8f06d..9577979fc8 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 fa594d0323..3e8a527802 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 edb24d3482..db4ea60948 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 ed1691884c..f1f5688d55 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 ccacd2f0ae..23d1e83a31 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/Decklink MultiOutput/Decklink MultiOutput net472.csproj b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net472.csproj index cbab0c4075..fff3cfb49b 100644 --- a/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net472.csproj @@ -22,8 +22,8 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net5.csproj b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net5.csproj index 47fa6217bd..7e0baa7c7a 100644 --- a/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net5.csproj @@ -22,8 +22,8 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net6.csproj b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net6.csproj index f0f74c9f18..946eea7f93 100644 --- a/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net6.csproj @@ -22,8 +22,8 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net7.csproj b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net7.csproj index cce5d47273..eff13203dc 100644 --- a/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net7.csproj @@ -22,8 +22,8 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net8.csproj b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net8.csproj index 7cdd4e1a6e..5bc7523875 100644 --- a/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput net8.csproj @@ -22,8 +22,8 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput netcore31.csproj index 211aac1fee..c0b51fe941 100644 --- a/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/Decklink MultiOutput/Decklink MultiOutput netcore31.csproj @@ -22,8 +22,8 @@ - - - + + + 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 fd503731f5..6f6da8517e 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,10 +10,10 @@ - - - - + + + + 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 9f395f9c90..6be81ec8b8 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,10 +10,10 @@ - - - - + + + + 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 99c530ab12..05c681919a 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,10 +10,10 @@ - - - - + + + + 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 8826d009d4..577e03c549 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,10 +10,10 @@ - - - - + + + + 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 5110e25d20..4c4140c985 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,10 +10,10 @@ - - - - + + + + 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 cc7e432ba7..03c1023978 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,10 +10,10 @@ - - - - + + + + diff --git a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net472.csproj index b5594d67cb..f4e01d19e0 100644 --- a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net472.csproj @@ -15,8 +15,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net5.csproj index 72ebdc66b9..da2707658d 100644 --- a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net5.csproj @@ -15,8 +15,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net6.csproj index b99b5efe4d..8d7dc8235e 100644 --- a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net6.csproj @@ -15,8 +15,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net7.csproj index e0e30cdcb5..111521861e 100644 --- a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net7.csproj @@ -15,8 +15,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net8.csproj index 4a5608ca49..4ddd02680e 100644 --- a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo net8.csproj @@ -15,8 +15,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo netcore31.csproj index 8efc5894be..2089d76cd7 100644 --- a/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/GenICam Source Demo/GenICam Source Demo netcore31.csproj @@ -15,8 +15,8 @@ - - + + 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 ddd2ef82d9..a79c7732f2 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 @@ -14,8 +14,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 1c40b1d2a0..0b96a1381c 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 @@ -14,8 +14,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 9f043be684..d4cccaec73 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 @@ -14,8 +14,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 26f021fd87..bf3ce33109 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 @@ -14,8 +14,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 392b9e5fc5..b764ba3b8c 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 @@ -14,8 +14,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 fbec201de5..746b69a695 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 @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net472.csproj index e65a7df052..687df40eaf 100644 --- a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net472.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net5.csproj index b7009ef29e..75837610b6 100644 --- a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net5.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net6.csproj index 07cf39f32d..de529569bb 100644 --- a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net6.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net7.csproj index 4a3fc8b4b7..faabf36ec7 100644 --- a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net7.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net8.csproj index 4845d95d5e..90bc62d74e 100644 --- a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo net8.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo netcore31.csproj index e3b87b3201..7bb9a83b70 100644 --- a/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/HTTP Source Demo/HTTP Source Demo netcore31.csproj @@ -14,8 +14,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 2bca52b2f6..4d2f68a1f6 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 @@ -17,7 +17,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 f986b13110..63e9c5b8d8 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 @@ -17,7 +17,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 697861f726..99a88f6e8b 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 @@ -17,7 +17,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 6334ac906f..b279bfa8c3 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 @@ -17,7 +17,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 9b0c6aeaa5..f28153b5dd 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 @@ -17,7 +17,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 9dabf90921..0d2c2fda75 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 @@ -17,7 +17,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 94727b11ed..98e48f51af 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 58d4d039c0..ed2a5873b8 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 8b98a9ae3d..fd5f1aed60 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 1c60787540..12e98e1b6e 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 14c8ffc1c4..6fd890bbaf 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 a775e36041..5870e7f483 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/NDI Source Demo/NDI Source Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/NDI Source Demo/NDI Source Demo net472.csproj index 973886d3cd..54ff1a0687 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 @@ -13,8 +13,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 ea69c37809..6ac2539f45 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 @@ -13,8 +13,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 2a16f0a0d6..271643d871 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 @@ -13,8 +13,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 58bed698fd..8f374d0b64 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 @@ -13,8 +13,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 a7bca3923a..d0b20528a0 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 @@ -13,8 +13,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 a004872882..37f3c7eac0 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 @@ -13,8 +13,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net472.csproj b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net472.csproj index f004dfcc45..7331259fbe 100644 --- a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net472.csproj @@ -16,9 +16,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net5.csproj b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net5.csproj index 6715bca68c..4558639b55 100644 --- a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net5.csproj @@ -16,9 +16,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net6.csproj b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net6.csproj index d66a700410..b6abe9de15 100644 --- a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net6.csproj @@ -16,9 +16,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net7.csproj b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net7.csproj index e88c5d2881..b9f6afba80 100644 --- a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net7.csproj @@ -16,9 +16,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net8.csproj b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net8.csproj index e5e6b67cec..41247e02d6 100644 --- a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB net8.csproj @@ -16,9 +16,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB netcore31.csproj b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB netcore31.csproj index e95372b5dd..36425b5a01 100644 --- a/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/Networks Streamer Demo/Networks Streamer Demo MB netcore31.csproj @@ -16,9 +16,9 @@ - - - + + + 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 c03b2d9330..5d38ad7d8e 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 a1a4b69497..39c7862b65 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 67b24680c0..7ad5b7991e 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 8181bd8e1f..e9abd5d24f 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 7a17e974af..1a708f886d 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 0a348b3733..693aedca9f 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/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net472.csproj index 053995c60e..3d278a2a76 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net472.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net5.csproj index b4b5eb2cfc..ca81d6f966 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net5.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net6.csproj index f8f0bf9d5f..9c7bbc4e5e 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net6.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net7.csproj index 821a9ab318..c6900e5e1f 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net7.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net8.csproj index 5ce6df8ff7..e67cba62e9 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo net8.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo netcore31.csproj index 623c9b2d60..2a10a22dc2 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP MultiViewSync Demo/RTSP MultiViewSync Demo netcore31.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net472.csproj b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net472.csproj index 14b8c767c8..409af15b56 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net472.csproj @@ -22,8 +22,8 @@ visioforge_main_icon.ico - - + + diff --git a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net5.csproj b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net5.csproj index f2bae36313..f827a74f2f 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net5.csproj @@ -22,8 +22,8 @@ visioforge_main_icon.ico - - + + diff --git a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net6.csproj b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net6.csproj index 58b7d69bf2..7e9c1fac90 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net6.csproj @@ -22,8 +22,8 @@ visioforge_main_icon.ico - - + + diff --git a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net7.csproj b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net7.csproj index 14cb3cba9d..94f728ca6e 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net7.csproj @@ -22,8 +22,8 @@ visioforge_main_icon.ico - - + + diff --git a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net8.csproj b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net8.csproj index a0528e0c29..cb07fbc809 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF net8.csproj @@ -22,8 +22,8 @@ visioforge_main_icon.ico - - + + diff --git a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF netcore31.csproj b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF netcore31.csproj index 54c198fd4c..1823a5d846 100644 --- a/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/RTSP Preview Demo/RTSP Preview Demo MB WPF netcore31.csproj @@ -22,8 +22,8 @@ visioforge_main_icon.ico - - + + diff --git a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net472.csproj b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net472.csproj index c78bfc7684..95a005edec 100644 --- a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net472.csproj @@ -14,9 +14,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net5.csproj b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net5.csproj index f8eee70d9b..ae52c9ef9e 100644 --- a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net5.csproj @@ -14,9 +14,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net6.csproj b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net6.csproj index d73803a039..31b708a23c 100644 --- a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net6.csproj @@ -14,9 +14,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net7.csproj b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net7.csproj index 95e40a5d6a..8d293a28ab 100644 --- a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net7.csproj @@ -14,9 +14,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net8.csproj b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net8.csproj index 9f4eea7cd7..d15958d0db 100644 --- a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo net8.csproj @@ -14,9 +14,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo netcore31.csproj b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo netcore31.csproj index 691b46f7e5..8fb66e1349 100644 --- a/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/SRT Source Demo/SRT Source Demo netcore31.csproj @@ -14,9 +14,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 96880d3de0..c9526cf981 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 0cdd6abf50..1deccdec66 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 88e659acdf..f8f7577fd0 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 88aaac5a96..230917e2b9 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 aecb3c56db..fb5cc67175 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 d857ecade5..54b394c465 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 64fc3e6537..4becdee64c 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 @@ -14,9 +14,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 e8c8903816..620b5e75bc 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 @@ -14,9 +14,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 8d01b0689c..4628bc4f1e 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 @@ -14,9 +14,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 509209447e..9410f74bf7 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 @@ -14,9 +14,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 036b358eca..13abcd2798 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 @@ -14,9 +14,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 98d90f3f64..af7a8a723d 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 @@ -15,9 +15,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 64ed374092..016b29b649 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 @@ -21,9 +21,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 31c2f825e1..e3a447bc0c 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 @@ -21,9 +21,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 bda5d03561..d5976e535a 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 @@ -21,9 +21,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 60b468d4f1..20d1e78fac 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 @@ -21,9 +21,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 2f76e68a03..b03b4bb50a 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 @@ -21,9 +21,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 769e1b7b2e..25dee0ca13 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 @@ -21,9 +21,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 5359aa03e9..6c9d070f65 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 @@ -21,9 +21,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 a95ff432ed..c0119d3995 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 @@ -15,9 +15,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 369763f74f..27e3bc5200 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 @@ -21,9 +21,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 281484b716..e58ab0b151 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 @@ -21,9 +21,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 eabbf21331..fc12cb6bf1 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 @@ -21,9 +21,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 0a527d00aa..5b14926574 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 @@ -21,9 +21,9 @@ - - - + + + diff --git a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net472.csproj b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net472.csproj index 1ba42361ab..fb9ec61ee7 100644 --- a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net472.csproj +++ b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net472.csproj @@ -16,8 +16,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net5.csproj b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net5.csproj index cd4c225336..059e7ffea1 100644 --- a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net5.csproj +++ b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net5.csproj @@ -16,8 +16,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net6.csproj b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net6.csproj index 3639646628..51dc493a6a 100644 --- a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net6.csproj +++ b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net6.csproj @@ -16,8 +16,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net7.csproj b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net7.csproj index 0a56fe60f2..5c5bce8aec 100644 --- a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net7.csproj +++ b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net7.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net8.csproj b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net8.csproj index a217893b30..885409e56a 100644 --- a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net8.csproj +++ b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net8.csproj @@ -16,8 +16,8 @@ - - + + diff --git a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker netcore31.csproj b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker netcore31.csproj index bf4f55830b..81694ac057 100644 --- a/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker netcore31.csproj +++ b/Media Blocks SDK/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker netcore31.csproj @@ -16,8 +16,8 @@ - - + + 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 7caa3e7044..06ee7fe6c6 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 @@ -14,8 +14,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 58e4e36d04..7be70ef80d 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 @@ -14,8 +14,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 1947e2d4d1..963546cf8f 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 @@ -14,8 +14,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 0c510be86b..862ec44488 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 @@ -14,8 +14,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 08e2728cf1..e92ac5c88b 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 @@ -14,8 +14,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 aca9e9e7b7..62157b914b 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 @@ -14,8 +14,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 32309e7ad9..c4313004a5 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 @@ -17,8 +17,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 0ac67347c1..bc362eba40 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 @@ -17,8 +17,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 2dc4fc4403..baa04c0ad9 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 @@ -17,8 +17,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 c29f49b045..22d932b644 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 @@ -17,8 +17,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 def401e126..bb984a92bb 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 @@ -17,8 +17,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 1da929486f..9d323f8592 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 @@ -17,8 +17,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 54813796e6..550f0aa6fc 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 @@ -24,7 +24,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 75721fddac..aad0749218 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 @@ -24,7 +24,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 bd93a9c18a..2e456da293 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 @@ -24,7 +24,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 d274d042e0..f106acd544 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 @@ -24,7 +24,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 40747dd2d7..d39c77f188 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 @@ -23,7 +23,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 8d0e468351..16762dc0cd 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 @@ -24,7 +24,7 @@ - - + + 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 781eb4b398..cfb4a6ec99 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 @@ -22,8 +22,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 4651c52f73..d0a205e201 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 @@ -22,8 +22,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 c206bb976a..f01a9ea13b 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 @@ -22,8 +22,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 76101b48b6..948ca8b60e 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 @@ -22,8 +22,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 1d994cceaa..665103e515 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 @@ -23,8 +23,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 13ebfde56b..9fce7bf487 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 @@ -23,8 +23,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 6a78c09040..20d16824b7 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 @@ -22,8 +22,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 eb05dd42ee..d9bfd69578 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 @@ -22,8 +22,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 233f31fbd1..c74f304143 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 @@ -22,8 +22,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 7247d10b13..0a0202ac66 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 @@ -22,8 +22,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 7247d10b13..0a0202ac66 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 @@ -22,8 +22,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 23647eac1a..fe85144131 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 @@ -23,8 +23,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 029a1c3188..84b92f215b 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 @@ -22,8 +22,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 35cbb8843d..b80e81ceba 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 @@ -22,8 +22,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 4c258c992c..47ffaa7af5 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 @@ -22,8 +22,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 3b3fcca515..4d05e324cb 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 @@ -22,8 +22,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 55c73b243f..5b606128e2 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 @@ -22,8 +22,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 4bb9a8b2d2..76085c5cc4 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 @@ -23,8 +23,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net472.csproj b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net472.csproj index a472c01847..a46b7ebea3 100644 --- a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net472.csproj +++ b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net472.csproj @@ -22,8 +22,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net5.csproj b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net5.csproj index 5f8c4afc0e..5c7b8a1d34 100644 --- a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net5.csproj +++ b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net5.csproj @@ -22,8 +22,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net6.csproj b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net6.csproj index 0481187739..a94ac24895 100644 --- a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net6.csproj +++ b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net6.csproj @@ -22,8 +22,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net7.csproj b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net7.csproj index af053972b7..fad7ab9151 100644 --- a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net7.csproj +++ b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net7.csproj @@ -22,8 +22,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net8.csproj b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net8.csproj index bf3a227832..87e4afe1cf 100644 --- a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net8.csproj +++ b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo net8.csproj @@ -22,8 +22,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo netcore31.csproj b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo netcore31.csproj index 916fbb7b39..ac563101a6 100644 --- a/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo netcore31.csproj +++ b/Media Blocks SDK/WinForms/CSharp/Stream Player Demo/Stream Player Demo netcore31.csproj @@ -22,8 +22,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 1fbece66fc..7cc6e18cd5 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 @@ -22,8 +22,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 e9b9272f7b..1173dd47a9 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 @@ -22,8 +22,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 9ad63cda23..9b8b8c6a66 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 @@ -22,8 +22,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 c348d2aee8..fea6ed6ba6 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 @@ -22,8 +22,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 5788ae78d4..82a93fdea3 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 @@ -22,8 +22,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 823cd521f4..caffe7c65a 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 @@ -23,8 +23,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net472.csproj b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net472.csproj index 3b06c4ec61..9dfb98f1b3 100644 --- a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net472.csproj +++ b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net472.csproj @@ -68,8 +68,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net5.csproj b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net5.csproj index 89db69d596..30d10ad83f 100644 --- a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net5.csproj +++ b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net5.csproj @@ -68,8 +68,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net6.csproj b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net6.csproj index 318c80cefc..f83ef08897 100644 --- a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net6.csproj +++ b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net6.csproj @@ -68,8 +68,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net7.csproj b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net7.csproj index f2d41de9a0..4a2e589a9a 100644 --- a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net7.csproj +++ b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net7.csproj @@ -68,8 +68,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net8.csproj b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net8.csproj index 2e3b725272..f9bf3be1e7 100644 --- a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net8.csproj +++ b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB net8.csproj @@ -68,8 +68,8 @@ - - + + diff --git a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB netcore31.csproj b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB netcore31.csproj index 038ed3d04b..903198a45e 100644 --- a/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB netcore31.csproj +++ b/Media Blocks SDK/WinForms/CSharp/YouTube Player Demo/YouTube Player Demo MB netcore31.csproj @@ -68,8 +68,8 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net472.csproj b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net472.csproj index fe1c91d813..4162259094 100644 --- a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net5.csproj b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net5.csproj index 106936bb74..608aec5a43 100644 --- a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net6.csproj b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net6.csproj index b8c1414464..be31d29137 100644 --- a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net7.csproj b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net7.csproj index 18601d75ee..9336b3eae9 100644 --- a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net8.csproj b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net8.csproj index 07f6d8d459..6d42645374 100644 --- a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player netcore31.csproj b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player netcore31.csproj index 60c234cad5..e2b3e8fdf4 100644 --- a/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/h264-data-player/h264-data-player netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net472.csproj index 09166ddb74..1c16db2460 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net5.csproj index ad4c4069a3..550e776e3f 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net6.csproj index dafe59ff1c..5be197fd00 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net7.csproj index 55d9d70ada..af3f5cfbfe 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net8.csproj index 7f305b893c..c878b9f3cb 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb netcore31.csproj index ad26ac924e..1ca733e22a 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-mb netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net472.csproj index 43c25861d9..1e3d05649a 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net5.csproj index aca71dbc2a..49159f0724 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net6.csproj index b1522b120a..9f10364ac1 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net7.csproj index 12d4c99fe7..ab25cf3436 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net8.csproj index 805d909f49..a5478568ae 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb netcore31.csproj index 2ab09c47d1..16d6133641 100644 --- a/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/ip-camera-preview/ip-camera-preview-mb netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net472.csproj index fe1c91d813..4162259094 100644 --- a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net5.csproj index 106936bb74..608aec5a43 100644 --- a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net6.csproj index b8c1414464..be31d29137 100644 --- a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net7.csproj index 18601d75ee..9336b3eae9 100644 --- a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net8.csproj index 07f6d8d459..6d42645374 100644 --- a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb netcore31.csproj index 60c234cad5..e2b3e8fdf4 100644 --- a/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/media-player/media-player-mb netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net472.csproj index fe1c91d813..4162259094 100644 --- a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net5.csproj index 106936bb74..608aec5a43 100644 --- a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net6.csproj index b8c1414464..be31d29137 100644 --- a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net7.csproj index 18601d75ee..9336b3eae9 100644 --- a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net8.csproj index 07f6d8d459..6d42645374 100644 --- a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb netcore31.csproj index 60c234cad5..e2b3e8fdf4 100644 --- a/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/memory-player/memory-player-mb netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net472.csproj index 8c57030482..334061f762 100644 --- a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net472.csproj @@ -69,7 +69,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net5.csproj index 61b1c3b57d..23607dc556 100644 --- a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net5.csproj @@ -69,7 +69,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net6.csproj index 2758b423fa..9a2cf28b95 100644 --- a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net6.csproj @@ -69,7 +69,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net7.csproj index 01c423f611..08285ec23b 100644 --- a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net7.csproj @@ -69,7 +69,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net8.csproj index e9b2133fa9..03a421c7c1 100644 --- a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb net8.csproj @@ -69,7 +69,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb netcore31.csproj index 04f0c67307..f5f4da2d88 100644 --- a/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/read-file-info/read-file-info-mb netcore31.csproj @@ -69,7 +69,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net472.csproj index 0323cd896c..949df6f710 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net5.csproj index a50aa0c053..631abab7cb 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net6.csproj index ab84c71971..35997244d4 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net7.csproj index 1dac292778..0d208f1f2e 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net8.csproj index d4ede36f31..0e2a3b5c92 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb netcore31.csproj index ab8bfc8db7..21eea7bec5 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-avi/screen-capture-avi-mb netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net472.csproj index c0e3c42bec..5e50d3ff65 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net5.csproj index f321a3b112..fc6b2e56ab 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net6.csproj index 16c0be2237..511a0ac7be 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net7.csproj index 851092dd4c..086e3c3d21 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net8.csproj index d3d410423a..b33663e802 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb netcore31.csproj index 43d0ab833e..139b1b86d6 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-mb netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net472.csproj index 6d573ad599..a6692d14b4 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net472.csproj @@ -13,7 +13,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net5.csproj index ce73e299c6..9ef35afddd 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net5.csproj @@ -13,7 +13,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net6.csproj index 19fd0a1adf..6e7013d374 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net6.csproj @@ -13,7 +13,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net7.csproj index 84f0206814..555a0c4458 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net7.csproj @@ -13,7 +13,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net8.csproj index dc6fe4e9d7..6a043ed03d 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb net8.csproj @@ -13,7 +13,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb netcore31.csproj index 10961cca18..72037f3011 100644 --- a/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/screen-to-decklink/screen-to-decklink-mb netcore31.csproj @@ -13,7 +13,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net472.csproj index 7dfb694c76..719dbdb6db 100644 --- a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net472.csproj @@ -77,7 +77,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net5.csproj index 54a80c2c9a..1c5a3df748 100644 --- a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net5.csproj @@ -77,7 +77,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net6.csproj index bc518bc6a3..8a64afa60d 100644 --- a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net6.csproj @@ -77,7 +77,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net7.csproj index f3e60c7132..3e92960661 100644 --- a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net7.csproj @@ -77,7 +77,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net8.csproj index db52eef9bf..48aeb2523d 100644 --- a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb net8.csproj @@ -77,7 +77,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb netcore31.csproj index 8859ea900b..7636fa2241 100644 --- a/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/speaker-capture/speaker-capture-mb netcore31.csproj @@ -77,7 +77,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net472.csproj index 4ddc8f3815..b2a069cb30 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net472.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net5.csproj index bfe6dde87f..27430e1b43 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net5.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net6.csproj index 7af3332486..0afd6eae90 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net6.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net7.csproj index 1e6cb39aaa..d263420129 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net7.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net8.csproj index c52f66ef18..e3840deea4 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb net8.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb netcore31.csproj index 31d755d7c6..a580950d79 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-mb netcore31.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net472.csproj index e497c5570e..e4b72da625 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net5.csproj index d508ba007f..8a143ded08 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net6.csproj index e5f9531647..97d2ecda32 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net7.csproj index f222efea62..baf7608306 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net8.csproj index 480dc5c58f..e22858aade 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb netcore31.csproj index ed5534566a..c4da4b3637 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-mb netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net472.csproj index 49cb2036c0..26ee7a3826 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net5.csproj index 6092e93067..eb620bdfa1 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net6.csproj index 2b3827b3b9..cfe395edb3 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net7.csproj index 14d0d4e23d..c26f433cb3 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net8.csproj index d902ccf586..bdc60c31f2 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb netcore31.csproj index 2ad5893cf9..f28ceb3966 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-mb netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net472.csproj index 401049c61f..7f82f85738 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net5.csproj index e1c01be337..9edd8fc507 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net6.csproj index 5d3324c66f..a6e70b7549 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net7.csproj index 1caef0815d..6234ba7787 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net8.csproj index 56670671d1..57142da96b 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb netcore31.csproj index 1ae3eea59f..20ada3befb 100644 --- a/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-mb netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net472.csproj index 35325895e2..7f8288ec6c 100644 --- a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net5.csproj index 6139e06a22..1920d07fbf 100644 --- a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net6.csproj index 82c748ea63..4f51f9b3cb 100644 --- a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net7.csproj index c122dda7df..58829dc930 100644 --- a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net8.csproj index ab503b5fc9..2cadac1fc1 100644 --- a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb netcore31.csproj index a1e595d118..58ba337b2b 100644 --- a/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-mb netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net472.csproj b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net472.csproj index af82e6dca9..e841d59292 100644 --- a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net472.csproj +++ b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net472.csproj @@ -73,7 +73,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net5.csproj b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net5.csproj index e9122e8e1b..b2cf52f366 100644 --- a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net5.csproj +++ b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net5.csproj @@ -73,7 +73,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net6.csproj b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net6.csproj index c20c0a86db..8b35334150 100644 --- a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net6.csproj +++ b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net6.csproj @@ -73,7 +73,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net7.csproj b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net7.csproj index a309beaf69..39c819299a 100644 --- a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net7.csproj +++ b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net7.csproj @@ -73,7 +73,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net8.csproj b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net8.csproj index 81833bd786..63aa525311 100644 --- a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net8.csproj +++ b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb net8.csproj @@ -73,7 +73,7 @@ - - + + diff --git a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb netcore31.csproj b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb netcore31.csproj index eb28df3183..a13e2a1ee4 100644 --- a/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb netcore31.csproj +++ b/Media Blocks SDK/_CodeSnippets/webcam-preview/webcam-preview-mb netcore31.csproj @@ -73,7 +73,7 @@ - - + + diff --git a/Media Blocks SDK/iOS/MobileStreamer/MobileStreamer.csproj b/Media Blocks SDK/iOS/MobileStreamer/MobileStreamer.csproj index c599d75033..fac46e7f83 100644 --- a/Media Blocks SDK/iOS/MobileStreamer/MobileStreamer.csproj +++ b/Media Blocks SDK/iOS/MobileStreamer/MobileStreamer.csproj @@ -25,8 +25,8 @@ True - - + + - - + + diff --git a/Media Player SDK X (crossplatform)/MAUI/SimplePlayer/SimplePlayer8.csproj b/Media Player SDK X (crossplatform)/MAUI/SimplePlayer/SimplePlayer8.csproj index 5eb517b6bc..686547b1cf 100644 --- a/Media Player SDK X (crossplatform)/MAUI/SimplePlayer/SimplePlayer8.csproj +++ b/Media Player SDK X (crossplatform)/MAUI/SimplePlayer/SimplePlayer8.csproj @@ -58,7 +58,7 @@ - + @@ -80,8 +80,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 f6c7057c6e..fdea074e2a 100644 --- a/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/MainPage.xaml.cs +++ b/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/MainPage.xaml.cs @@ -91,10 +91,10 @@ private void Window_Destroying(object sender, EventArgs e) private void MainPage_Loaded(object sender, EventArgs e) { IVideoView vv; -#if (__IOS__ && !__MACCATALYST__) || __ANDROID__ - vv = (IVideoView)videoView.Handler.PlatformView; -#else +#if __MACCATALYST__ vv = videoView; +#else + vv = videoView.GetVideoView(); #endif _player = new MediaPlayerCoreX(vv); diff --git a/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer.csproj b/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer.csproj index 19e74496c9..b84c34ba80 100644 --- a/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer.csproj +++ b/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer.csproj @@ -42,7 +42,7 @@ - + @@ -60,8 +60,8 @@ - - + + diff --git a/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer8.csproj b/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer8.csproj index 585206a9fb..2d846777c2 100644 --- a/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer8.csproj +++ b/Media Player SDK X (crossplatform)/MAUI/SkinnedPlayer/SkinnedPlayer8.csproj @@ -42,7 +42,7 @@ - + @@ -60,8 +60,8 @@ - - + + 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 bbd48298c2..d33f521a34 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 @@ -15,7 +15,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 49723e4665..2deb8d6fc9 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 @@ -15,7 +15,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 5d2b9b589c..50838413e1 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 @@ -15,7 +15,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 815728d1b2..ba034113a2 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 @@ -15,7 +15,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 e827d498ec..b9724513f7 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 @@ -15,7 +15,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 ae4915f985..bde71df933 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 @@ -15,7 +15,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 2a3d0b46c7..808a389b23 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 @@ -15,7 +15,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 55af4660d3..18c5540b88 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 @@ -15,7 +15,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 cc91683629..91ac631cd4 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 @@ -15,7 +15,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 ae566a2a23..6b1ea47301 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 @@ -15,7 +15,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 9e7a82a04b..01e147c803 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 @@ -15,7 +15,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 34967cecd0..7ce818b432 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 @@ -15,7 +15,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 0022774dcf..f3a713c5a3 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 32a9c14959..8741d7a4bd 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 0b82faa8ed..f9066e11c3 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 ba06fffd26..e649bdcc1f 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 5b47de8114..04dfe6d0f5 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 e26976a968..766b623182 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 52f61188a4..d51aa2aeeb 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 @@ -63,7 +63,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 bc48bf9d9a..edb1e3147b 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 @@ -63,7 +63,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 e22362b6e5..f362ab33f7 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 @@ -63,7 +63,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 47b32fc20f..1053e61bf4 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 @@ -63,7 +63,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 6c55612a03..ace29b560a 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 @@ -62,7 +62,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 f5e74098df..6af5ee0c26 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 @@ -63,7 +63,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 0477c32715..e081a93d66 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 X (crossplatform)/macOS/SimpleMediaPlayer/SimpleMediaPlayer.csproj b/Media Player SDK X (crossplatform)/macOS/SimpleMediaPlayer/SimpleMediaPlayer.csproj index 0fa661f644..07edf5bb4b 100644 --- a/Media Player SDK X (crossplatform)/macOS/SimpleMediaPlayer/SimpleMediaPlayer.csproj +++ b/Media Player SDK X (crossplatform)/macOS/SimpleMediaPlayer/SimpleMediaPlayer.csproj @@ -18,8 +18,8 @@ None - - + + 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 f2e435cc8f..7999f33b6c 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 269c90ee42..10c7844dc3 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 8ee2117bc3..480d06b398 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 f72d1dbbca..1b42cb37dd 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 ad40517bcb..6f84957c95 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 d5a7c13874..b0a4106873 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 5e220e2b7c..7fb7aca890 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 e65ec5b4ae..1eff3d9d06 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 f1e88dc63a..f52dedd461 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 746e8b91f4..21880fca49 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 2d9be65f0d..a10d0134ce 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 4dea4a64e5..333684b581 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 e5eb4bad37..060c25f18d 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 7fc2fa34bc..795c1e4a5b 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 702f261adb..9cdb932a60 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 ddb876cf67..197897c651 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 d3b09b139e..301213a3fa 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 16ebf8ab1a..2f9e721a29 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 50d213d127..f9d1649c6c 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 e375635f2f..f69b5227bc 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 e7ede57e05..76be1a05ee 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 d80e045250..4dbeb50378 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 57dacde4e6..08b5777fc6 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 328e12db36..52773cfd2e 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 ed2d3ea08a..de4f55eb04 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 e589571246..d9838c139a 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 9cdd8eb08a..e6ea93a80a 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 19132d6793..bbb2ad226f 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 5cfd7c7bd1..0e0aa37df1 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 6da6fe281f..efc4978d8e 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 910a2e8347..a057c61264 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 040475d2ec..a5e8fdda99 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 0333977466..e88a65b13c 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 46eeaeff04..dea415d482 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 ceb74efac3..2af95cbb6e 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 8d73090a00..aa16f3a390 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 6d37e14852..445edb990c 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 305407a9c6..d323974d3c 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 bac60274c8..fc39e39fdc 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 bec714ad4a..aa9bad4ab5 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 92f52d0887..830775f428 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 49a0b2c9cd..5691e14d9f 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 3674a43ffa..af843099c8 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 710e8403f7..b0e48ef2c9 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 93d87f6b5e..1f774800e5 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 4e37f2dc6b..15b0335a40 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 4f1fcc9f96..07cc995ff1 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 08a5207cfb..00be3ba00c 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 ee29d298c5..5946c29251 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 9e512c7643..130231c86c 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 a2f5d6ebf6..4ea454193f 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 b2ed9528a7..05a44c8326 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 5e67b3cc85..8cb274ecdf 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 693fa35020..c51b50f1b5 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 fad0e23cae..76852ab276 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 fd17fc450e..2882434ec8 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 635b06a258..0fe5a6abe6 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 a98f8a93b6..76ea103a20 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 f6f872a87a..5026a19d7d 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 67c07f26ca..a7337f9c31 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 46391ad969..5243d21a11 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 5d2a00213b..bf04e7caab 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 532bd7d1f8..84ed5f0036 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 e096638511..feedc14103 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 e55f41c0d7..1008f350bc 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 378fdcb598..7e69dbc4a2 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 44db3d6237..d35b131c2a 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 cfb70442bd..61c3fb47f5 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 8cec685eec..6347aa04c1 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 b1bfbda732..5a0209370a 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 f0c48ad844..db3a3c4109 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 c88c7e877b..afe48409b5 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 6c42f734cb..c9a2f6c092 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 9fcd3b37e4..071fd3daee 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 fe85118b0e..0cfd414d88 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 1d391b5142..316d9a4d24 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 5b3172c682..29e55883c6 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 88480c6a7b..7bd86fce5a 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 435a06f154..ec2ac8c4b4 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 0fe0b96eed..12643c4058 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 d4d4af8c34..2067f518a7 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 484fa54291..e1d9f04054 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 526f92643c..3f7062b7a1 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 758b9b9db2..6861d4f921 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 56acd23d93..bf0a930277 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 e1eb8ae248..343b016110 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 279101d210..d5991d201d 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 c5776328d0..2917320642 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 03037eea34..38b1a88d6e 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 6450909aff..ad74e644a1 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 5374d695a9..5b909d11ad 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 bc585d65cf..2d32fc3cc0 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 3efc95a1f2..0b4903d3fa 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 9dce7f4a0d..a928d8001c 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 7b393d84be..5e446364f1 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 3fc8125260..85f5909b5e 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/Form1.Designer.cs b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/Form1.Designer.cs index 3d5b2874b4..e4b6fb66cf 100644 --- a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/Form1.Designer.cs +++ b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/Form1.Designer.cs @@ -32,174 +32,209 @@ protected override void Dispose(bool disposing) /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - this.btStart = new System.Windows.Forms.Button(); - this.btStop = new System.Windows.Forms.Button(); - this.edURL = new System.Windows.Forms.TextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.lbTime = new System.Windows.Forms.Label(); - this.tbTimeline = new System.Windows.Forms.TrackBar(); - this.mmLog = new System.Windows.Forms.TextBox(); - this.cbDebugMode = new System.Windows.Forms.CheckBox(); - this.label2 = new System.Windows.Forms.Label(); - this.btReadFormats = new System.Windows.Forms.Button(); - this.cbVideoStream = new System.Windows.Forms.ComboBox(); - this.cbAudioStream = new System.Windows.Forms.ComboBox(); - this.timer1 = new System.Windows.Forms.Timer(this.components); - this.VideoView1 = new VisioForge.Core.UI.WinForms.VideoView(); - ((System.ComponentModel.ISupportInitialize)(this.tbTimeline)).BeginInit(); - this.SuspendLayout(); + components = new System.ComponentModel.Container(); + btStart = new System.Windows.Forms.Button(); + btStop = new System.Windows.Forms.Button(); + edURL = new System.Windows.Forms.TextBox(); + label1 = new System.Windows.Forms.Label(); + lbTime = new System.Windows.Forms.Label(); + tbTimeline = new System.Windows.Forms.TrackBar(); + mmLog = new System.Windows.Forms.TextBox(); + cbDebugMode = new System.Windows.Forms.CheckBox(); + label2 = new System.Windows.Forms.Label(); + btReadFormats = new System.Windows.Forms.Button(); + cbVideoStream = new System.Windows.Forms.ComboBox(); + cbAudioStream = new System.Windows.Forms.ComboBox(); + timer1 = new System.Windows.Forms.Timer(components); + VideoView1 = new VisioForge.Core.UI.WinForms.VideoView(); + cbAudioOutput = new System.Windows.Forms.ComboBox(); + label4 = new System.Windows.Forms.Label(); + ((System.ComponentModel.ISupportInitialize)tbTimeline).BeginInit(); + SuspendLayout(); // // btStart // - this.btStart.Location = new System.Drawing.Point(116, 51); - this.btStart.Name = "btStart"; - this.btStart.Size = new System.Drawing.Size(75, 23); - this.btStart.TabIndex = 0; - this.btStart.Text = "Start"; - this.btStart.UseVisualStyleBackColor = true; - this.btStart.Click += new System.EventHandler(this.BtStart_Click); + btStart.Location = new System.Drawing.Point(193, 98); + btStart.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6); + btStart.Name = "btStart"; + btStart.Size = new System.Drawing.Size(125, 44); + btStart.TabIndex = 0; + btStart.Text = "Start"; + btStart.UseVisualStyleBackColor = true; + btStart.Click += BtStart_Click; // // btStop // - this.btStop.Location = new System.Drawing.Point(197, 51); - this.btStop.Name = "btStop"; - this.btStop.Size = new System.Drawing.Size(75, 23); - this.btStop.TabIndex = 1; - this.btStop.Text = "Stop"; - this.btStop.UseVisualStyleBackColor = true; - this.btStop.Click += new System.EventHandler(this.BtStop_Click); + btStop.Location = new System.Drawing.Point(328, 98); + btStop.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6); + btStop.Name = "btStop"; + btStop.Size = new System.Drawing.Size(125, 44); + btStop.TabIndex = 1; + btStop.Text = "Stop"; + btStop.UseVisualStyleBackColor = true; + btStop.Click += BtStop_Click; // // edURL // - this.edURL.Location = new System.Drawing.Point(15, 25); - this.edURL.Name = "edURL"; - this.edURL.Size = new System.Drawing.Size(545, 20); - this.edURL.TabIndex = 2; - this.edURL.Text = "https://www.youtube.com/watch?v=d2smz_1L2_0"; + edURL.Location = new System.Drawing.Point(20, 48); + edURL.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6); + edURL.Name = "edURL"; + edURL.Size = new System.Drawing.Size(908, 31); + edURL.TabIndex = 2; + edURL.Text = "https://www.youtube.com/watch?v=d2smz_1L2_0"; // // label1 // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(12, 9); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(29, 13); - this.label1.TabIndex = 3; - this.label1.Text = "URL"; + label1.AutoSize = true; + label1.Location = new System.Drawing.Point(20, 17); + label1.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); + label1.Name = "label1"; + label1.Size = new System.Drawing.Size(43, 25); + label1.TabIndex = 3; + label1.Text = "URL"; // // lbTime // - this.lbTime.AutoSize = true; - this.lbTime.Location = new System.Drawing.Point(464, 64); - this.lbTime.Name = "lbTime"; - this.lbTime.Size = new System.Drawing.Size(96, 13); - this.lbTime.TabIndex = 6; - this.lbTime.Text = "00:00:00/00:00:00"; + lbTime.AutoSize = true; + lbTime.Location = new System.Drawing.Point(773, 108); + lbTime.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); + lbTime.Name = "lbTime"; + lbTime.Size = new System.Drawing.Size(155, 25); + lbTime.TabIndex = 6; + lbTime.Text = "00:00:00/00:00:00"; // // tbTimeline // - this.tbTimeline.Location = new System.Drawing.Point(302, 51); - this.tbTimeline.Maximum = 100; - this.tbTimeline.Name = "tbTimeline"; - this.tbTimeline.Size = new System.Drawing.Size(156, 45); - this.tbTimeline.TabIndex = 5; - this.tbTimeline.Scroll += new System.EventHandler(this.tbTimeline_Scroll); + tbTimeline.Location = new System.Drawing.Point(503, 98); + tbTimeline.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6); + tbTimeline.Maximum = 100; + tbTimeline.Name = "tbTimeline"; + tbTimeline.Size = new System.Drawing.Size(260, 69); + tbTimeline.TabIndex = 5; + tbTimeline.Scroll += tbTimeline_Scroll; // // mmLog // - this.mmLog.Location = new System.Drawing.Point(15, 565); - this.mmLog.Multiline = true; - this.mmLog.Name = "mmLog"; - this.mmLog.ScrollBars = System.Windows.Forms.ScrollBars.Both; - this.mmLog.Size = new System.Drawing.Size(545, 61); - this.mmLog.TabIndex = 8; + mmLog.Location = new System.Drawing.Point(20, 954); + mmLog.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6); + mmLog.Multiline = true; + mmLog.Name = "mmLog"; + mmLog.ScrollBars = System.Windows.Forms.ScrollBars.Both; + mmLog.Size = new System.Drawing.Size(908, 114); + mmLog.TabIndex = 8; // // cbDebugMode // - this.cbDebugMode.AutoSize = true; - this.cbDebugMode.Location = new System.Drawing.Point(15, 542); - this.cbDebugMode.Name = "cbDebugMode"; - this.cbDebugMode.Size = new System.Drawing.Size(87, 17); - this.cbDebugMode.TabIndex = 7; - this.cbDebugMode.Text = "Debug mode"; - this.cbDebugMode.UseVisualStyleBackColor = true; + cbDebugMode.AutoSize = true; + cbDebugMode.Location = new System.Drawing.Point(20, 909); + cbDebugMode.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6); + cbDebugMode.Name = "cbDebugMode"; + cbDebugMode.Size = new System.Drawing.Size(144, 29); + cbDebugMode.TabIndex = 7; + cbDebugMode.Text = "Debug mode"; + cbDebugMode.UseVisualStyleBackColor = true; // // label2 // - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(12, 86); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(88, 13); - this.label2.TabIndex = 9; - this.label2.Text = "Selected streams"; + label2.AutoSize = true; + label2.Location = new System.Drawing.Point(20, 163); + label2.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); + label2.Name = "label2"; + label2.Size = new System.Drawing.Size(145, 25); + label2.TabIndex = 9; + label2.Text = "Selected streams"; // // btReadFormats // - this.btReadFormats.Location = new System.Drawing.Point(15, 51); - this.btReadFormats.Name = "btReadFormats"; - this.btReadFormats.Size = new System.Drawing.Size(95, 23); - this.btReadFormats.TabIndex = 11; - this.btReadFormats.Text = "Read formats"; - this.btReadFormats.UseVisualStyleBackColor = true; - this.btReadFormats.Click += new System.EventHandler(this.BtReadFormats_Click); + btReadFormats.Location = new System.Drawing.Point(20, 98); + btReadFormats.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6); + btReadFormats.Name = "btReadFormats"; + btReadFormats.Size = new System.Drawing.Size(163, 44); + btReadFormats.TabIndex = 11; + btReadFormats.Text = "Read formats"; + btReadFormats.UseVisualStyleBackColor = true; + btReadFormats.Click += BtReadFormats_Click; // // cbVideoStream // - this.cbVideoStream.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.cbVideoStream.FormattingEnabled = true; - this.cbVideoStream.Location = new System.Drawing.Point(116, 83); - this.cbVideoStream.Name = "cbVideoStream"; - this.cbVideoStream.Size = new System.Drawing.Size(214, 21); - this.cbVideoStream.TabIndex = 12; + cbVideoStream.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + cbVideoStream.FormattingEnabled = true; + cbVideoStream.Location = new System.Drawing.Point(193, 160); + cbVideoStream.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6); + cbVideoStream.Name = "cbVideoStream"; + cbVideoStream.Size = new System.Drawing.Size(354, 33); + cbVideoStream.TabIndex = 12; // // cbAudioStream // - this.cbAudioStream.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.cbAudioStream.FormattingEnabled = true; - this.cbAudioStream.Location = new System.Drawing.Point(346, 83); - this.cbAudioStream.Name = "cbAudioStream"; - this.cbAudioStream.Size = new System.Drawing.Size(214, 21); - this.cbAudioStream.TabIndex = 13; + cbAudioStream.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + cbAudioStream.FormattingEnabled = true; + cbAudioStream.Location = new System.Drawing.Point(577, 160); + cbAudioStream.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6); + cbAudioStream.Name = "cbAudioStream"; + cbAudioStream.Size = new System.Drawing.Size(354, 33); + cbAudioStream.TabIndex = 13; // // timer1 // - this.timer1.Tick += new System.EventHandler(this.timer1_Tick); + timer1.Tick += timer1_Tick; // // VideoView1 // - this.VideoView1.BackColor = System.Drawing.Color.Black; - this.VideoView1.Location = new System.Drawing.Point(15, 120); - this.VideoView1.Name = "VideoView1"; - this.VideoView1.Size = new System.Drawing.Size(545, 406); - this.VideoView1.StatusOverlay = null; - this.VideoView1.TabIndex = 14; + VideoView1.BackColor = System.Drawing.Color.Black; + VideoView1.Location = new System.Drawing.Point(20, 279); + VideoView1.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6); + VideoView1.Name = "VideoView1"; + VideoView1.Size = new System.Drawing.Size(908, 605); + VideoView1.StatusOverlay = null; + VideoView1.TabIndex = 14; + // + // cbAudioOutput + // + cbAudioOutput.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + cbAudioOutput.FormattingEnabled = true; + cbAudioOutput.Location = new System.Drawing.Point(193, 217); + cbAudioOutput.Name = "cbAudioOutput"; + cbAudioOutput.Size = new System.Drawing.Size(735, 33); + cbAudioOutput.TabIndex = 19; + // + // label4 + // + label4.AutoSize = true; + label4.Location = new System.Drawing.Point(20, 220); + label4.Name = "label4"; + label4.Size = new System.Drawing.Size(119, 25); + label4.TabIndex = 18; + label4.Text = "Audio output"; // // Form1 // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(575, 642); - this.Controls.Add(this.VideoView1); - this.Controls.Add(this.cbAudioStream); - this.Controls.Add(this.cbVideoStream); - this.Controls.Add(this.btReadFormats); - this.Controls.Add(this.label2); - this.Controls.Add(this.mmLog); - this.Controls.Add(this.cbDebugMode); - this.Controls.Add(this.lbTime); - this.Controls.Add(this.tbTimeline); - this.Controls.Add(this.label1); - this.Controls.Add(this.edURL); - this.Controls.Add(this.btStop); - this.Controls.Add(this.btStart); - this.Name = "Form1"; - this.Text = "Media Player SDK .Net - YouTube Player Demo"; - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing); - this.Load += new System.EventHandler(this.Form1_Load); - ((System.ComponentModel.ISupportInitialize)(this.tbTimeline)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - + AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F); + AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + ClientSize = new System.Drawing.Size(958, 1098); + Controls.Add(cbAudioOutput); + Controls.Add(label4); + Controls.Add(VideoView1); + Controls.Add(cbAudioStream); + Controls.Add(cbVideoStream); + Controls.Add(btReadFormats); + Controls.Add(label2); + Controls.Add(mmLog); + Controls.Add(cbDebugMode); + Controls.Add(lbTime); + Controls.Add(tbTimeline); + Controls.Add(label1); + Controls.Add(edURL); + Controls.Add(btStop); + Controls.Add(btStart); + Margin = new System.Windows.Forms.Padding(5, 6, 5, 6); + Name = "Form1"; + Text = "Media Player SDK .Net - YouTube Player Demo"; + FormClosing += Form1_FormClosing; + Load += Form1_Load; + ((System.ComponentModel.ISupportInitialize)tbTimeline).EndInit(); + ResumeLayout(false); + PerformLayout(); } #endregion @@ -218,6 +253,8 @@ private void InitializeComponent() private System.Windows.Forms.ComboBox cbAudioStream; private System.Windows.Forms.Timer timer1; private VisioForge.Core.UI.WinForms.VideoView VideoView1; + private System.Windows.Forms.ComboBox cbAudioOutput; + private System.Windows.Forms.Label label4; } } diff --git a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/Form1.cs b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/Form1.cs index 670ed80f0d..70cb4a6eb4 100644 --- a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/Form1.cs +++ b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/Form1.cs @@ -75,6 +75,11 @@ private async void BtStart_Click(object sender, EventArgs e) MediaPlayer1.Audio_AdditionalStreams_Add(_audioInfoList[cbAudioStream.SelectedIndex].Url); } + if (MediaPlayer1.Audio_PlayAudio) + { + MediaPlayer1.Audio_OutputDevice = cbAudioOutput.Text; + } + await MediaPlayer1.PlayAsync(); timer1.Start(); @@ -120,7 +125,7 @@ private async void BtReadFormats_Click(object sender, EventArgs e) var audios = streamManifest.GetAudioOnlyStreams(); foreach (var stream in audios) { - cbAudioStream.Items.Add(stream.ToString()); + cbAudioStream.Items.Add($"{stream.ToString()} [{stream.Bitrate.ToString()}]"); _audioInfoList.Add(stream); } @@ -139,6 +144,18 @@ private void Form1_Load(object sender, EventArgs e) Text += $" (SDK v{MediaPlayer1.SDK_Version()})"; MediaPlayer1.Debug_Dir = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "VisioForge"); + + // fill audio output devices + var audioOutputs = MediaPlayer1.Audio_OutputDevices(); + foreach (var audioOutput in audioOutputs) + { + cbAudioOutput.Items.Add(audioOutput); + } + + if (cbAudioOutput.Items.Count > 0) + { + cbAudioOutput.SelectedIndex = 0; + } } private async void timer1_Tick(object sender, EventArgs e) diff --git a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/Form1.resx b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/Form1.resx index 1f666f268b..f2b86d474f 100644 --- a/Media Player SDK/WinForms/CSharp/YouTube Player Demo/Form1.resx +++ b/Media Player SDK/WinForms/CSharp/YouTube Player Demo/Form1.resx @@ -1,17 +1,17 @@  - 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 13d800ec9a..06ccea6748 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 373b0dcbe2..c9275d9d8b 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 468ed57bad..9985086e30 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 1a8e4b8e25..f0f61e12c2 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 752d6328aa..dcba70eaa5 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 eeec4c1cf7..5bbbe73df8 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 790f65e54a..7726a5873b 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 e48bdd1008..11421b24ee 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 775844015e..8a7a0ac33c 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 2aa5afa228..97bc82bbb2 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 0bc8969cd8..0d5f483dbf 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 ac58c92a20..104eb6d76e 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 33b13855dd..b78fbaa18e 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 655b50af99..2ae03b29cd 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 7a40b51c24..84cd7ce94e 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 8ed8f234f9..f6448fa369 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 188b871bcb..3f32d01024 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 e245649046..434be968a3 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 88872d1b4f..d82c655255 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 650f68b5cc..aa1d5b17cb 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 23649d3e5f..49681f9b5a 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 df7650df0b..c661e1a225 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 2155a800c5..db4db6188c 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 23004c0fe8..6b936ba9eb 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 1540763617..501284d7e6 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 4a838ba4aa..195e0e3cda 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 cb0722ecd8..827ac5ed35 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 db547e8396..834888bf4e 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 38e0f5d645..e29d6df9f1 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 c8821d76fb..2971b0c4eb 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 11a0d0d0ef..1f8f64a2ba 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 c3e64f9c42..52656e6922 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 380c14c42a..d2c751f671 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 a24418fb0d..dd5acd10d3 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 48f3b4debb..0d206a9c3f 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 b3f9d33ad1..7ac3af259f 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 f81b482988..fd6b254291 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 fb0544612e..901e54a968 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 064952333b..c405cce0cf 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 2ae41e98bf..829bb75db3 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 de6b621e1a..a64dcbf527 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 291a010aeb..89a7a32602 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 b3fb0def3b..a1c2f381fc 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 79b46d5405..025f692272 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 ff7f91a9b1..a3c6791377 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 1b10b00475..3fda243830 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 f2d332e253..c146569797 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 991e9cfd97..94f57150c3 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 c87e99464f..8a510341f1 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 6b3222412f..78e9e37564 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 761ef77e90..d4da49a168 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 4a5c97798b..4b32f8f9d1 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 d0362532f8..cbc8ff98cf 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 3bdbca4fe3..1b3042940c 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 01de8fe966..36e251de7a 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/PhotoCapture/PhotoCapture net7.csproj b/Video Capture SDK X (crossplatform)/Android/PhotoCapture/PhotoCapture net7.csproj index 5a3d96ef5c..57a134f50a 100644 --- a/Video Capture SDK X (crossplatform)/Android/PhotoCapture/PhotoCapture net7.csproj +++ b/Video Capture SDK X (crossplatform)/Android/PhotoCapture/PhotoCapture net7.csproj @@ -10,12 +10,12 @@ 1.0 - + - - + + diff --git a/Video Capture SDK X (crossplatform)/Android/PhotoCapture/PhotoCapture net8.csproj b/Video Capture SDK X (crossplatform)/Android/PhotoCapture/PhotoCapture net8.csproj index f8d2a3fe22..3c21aec041 100644 --- a/Video Capture SDK X (crossplatform)/Android/PhotoCapture/PhotoCapture net8.csproj +++ b/Video Capture SDK X (crossplatform)/Android/PhotoCapture/PhotoCapture net8.csproj @@ -10,12 +10,12 @@ 1.0 - + - - + + 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 83be5cdca7..2ab69c6bc2 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 @@ -11,12 +11,12 @@ 1.0 - + - - + + 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 7de99b9770..7377f51c04 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 @@ -11,12 +11,12 @@ 1.0 - + - - + + diff --git a/Video Capture SDK X (crossplatform)/Avalonia/Simple Video Capture/SimpleVideoCaptureA.csproj b/Video Capture SDK X (crossplatform)/Avalonia/Simple Video Capture/SimpleVideoCaptureA.csproj index 058920ce58..fb13794cb5 100644 --- a/Video Capture SDK X (crossplatform)/Avalonia/Simple Video Capture/SimpleVideoCaptureA.csproj +++ b/Video Capture SDK X (crossplatform)/Avalonia/Simple Video Capture/SimpleVideoCaptureA.csproj @@ -39,7 +39,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/MAUI/PhotoCapture/PhotoCapture net7.csproj b/Video Capture SDK X (crossplatform)/MAUI/PhotoCapture/PhotoCapture net7.csproj index b8c4b90875..065b51348c 100644 --- a/Video Capture SDK X (crossplatform)/MAUI/PhotoCapture/PhotoCapture net7.csproj +++ b/Video Capture SDK X (crossplatform)/MAUI/PhotoCapture/PhotoCapture net7.csproj @@ -52,7 +52,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/MAUI/PhotoCapture/PhotoCapture net8.csproj b/Video Capture SDK X (crossplatform)/MAUI/PhotoCapture/PhotoCapture net8.csproj index 8569a55aaa..9a1cd6b1a0 100644 --- a/Video Capture SDK X (crossplatform)/MAUI/PhotoCapture/PhotoCapture net8.csproj +++ b/Video Capture SDK X (crossplatform)/MAUI/PhotoCapture/PhotoCapture net8.csproj @@ -55,7 +55,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 c8d9b7b4d1..407470ee6d 100644 --- a/Video Capture SDK X (crossplatform)/MAUI/QRReader/MainPage.xaml.cs +++ b/Video Capture SDK X (crossplatform)/MAUI/QRReader/MainPage.xaml.cs @@ -38,11 +38,11 @@ private async void MainPage_Loaded(object sender, EventArgs e) await RequestCameraPermissionAsync(); #endif - IVideoView vv = null; -#if __IOS__ && !__MACCATALYST__ || __ANDROID__ - vv = (IVideoView)videoView.Handler.PlatformView; -#else + IVideoView vv; +#if __MACCATALYST__ vv = videoView; +#else + vv = videoView.GetVideoView(); #endif _core = new VideoCaptureCoreX(vv); diff --git a/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader.csproj b/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader.csproj index 074b52b4e1..1b93e77041 100644 --- a/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader.csproj +++ b/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader.csproj @@ -48,7 +48,7 @@ - + @@ -78,8 +78,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader8.csproj b/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader8.csproj index e99044bd89..9c2a26609a 100644 --- a/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader8.csproj +++ b/Video Capture SDK X (crossplatform)/MAUI/QRReader/QRReader8.csproj @@ -48,7 +48,7 @@ - + @@ -78,8 +78,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 3cdc009d95..9c0876fffe 100644 --- a/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/MainPage.xaml.cs +++ b/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/MainPage.xaml.cs @@ -80,12 +80,12 @@ private async void MainPage_Loaded(object sender, EventArgs e) #endif IVideoView vv; -#if (__IOS__ && !__MACCATALYST__) || __ANDROID__ - vv = (IVideoView)videoView.Handler.PlatformView; -#else +#if __MACCATALYST__ vv = videoView; +#else + vv = videoView.GetVideoView(); #endif - + _core = new VideoCaptureCoreX(vv); _core.OnError += Core_OnError; diff --git a/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture.csproj b/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture.csproj index c9baa1b1e9..415b0b50af 100644 --- a/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture.csproj +++ b/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture.csproj @@ -58,7 +58,7 @@ - + @@ -68,7 +68,7 @@ - + @@ -80,8 +80,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture8.csproj b/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture8.csproj index f0df531b2a..1cb2b16222 100644 --- a/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture8.csproj +++ b/Video Capture SDK X (crossplatform)/MAUI/SimpleCapture/SimpleCapture8.csproj @@ -60,7 +60,7 @@ - + @@ -81,8 +81,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net472.csproj index a1fadcd792..bdab5455e7 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net472.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net472.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net5.csproj index 7d1d994515..175774e609 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net5.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net5.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net6.csproj index 564799886b..376ee4d2e8 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net6.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net6.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net7.csproj index 967bdbc58f..5b9926b4db 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net7.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net7.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net8.csproj index f7741f29cf..30c6b6a699 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net8.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo net8.csproj @@ -14,8 +14,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo netcore31.csproj index 4371ea602a..1b1badf310 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Allied Vision Camera Demo/AlliedVision Camera Demo netcore31.csproj @@ -14,8 +14,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 f532403f0e..495f09c686 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 @@ -14,8 +14,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 3d5dd85f11..b83bdc664e 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 @@ -14,8 +14,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 b3ae671d59..2f27dc6913 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 @@ -14,8 +14,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 c1ee452a13..80859fa0ce 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 @@ -14,8 +14,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 afcbbb10aa..fbba711972 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 @@ -14,8 +14,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 7f2c825eb3..0f6d70eca6 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 @@ -14,8 +14,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net472.csproj index 1a65956293..3807270525 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net472.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net472.csproj @@ -15,8 +15,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net5.csproj index b7a2ebf3ab..d82c6b5a27 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net5.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net5.csproj @@ -17,8 +17,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net6.csproj index d6d9ebc00d..d06cd7f473 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net6.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net6.csproj @@ -17,8 +17,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net7.csproj index 2b73768f59..ea81c313c6 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net7.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net7.csproj @@ -17,8 +17,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net8.csproj index a82a457614..b7d045737d 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net8.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo net8.csproj @@ -17,8 +17,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo netcore31.csproj index 97d8ca1abf..d4a2dc1964 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Basler Camera Demo/Basler Camera Demo netcore31.csproj @@ -17,8 +17,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 31a1e031c4..413c9615c4 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 @@ -17,7 +17,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 488952262d..1356597696 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 @@ -17,7 +17,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 aade212667..d4dd9cfe41 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 @@ -17,7 +17,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 52c78ce7f1..a04252366f 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 @@ -17,7 +17,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 1ed7e504b5..fc393e777c 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 @@ -17,7 +17,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 e5f07b304c..0e0cc1ce4a 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 @@ -17,7 +17,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net472.csproj index 71d3995a18..74f9b37930 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net472.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net472.csproj @@ -31,8 +31,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net5.csproj index 7482c9ac69..e44ba595ec 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net5.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net5.csproj @@ -31,8 +31,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net6.csproj index a7d4a853e0..9e6eca4869 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net6.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net6.csproj @@ -31,8 +31,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net7.csproj index f663c67d38..30bf2ef2d0 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net7.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net7.csproj @@ -31,8 +31,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net8.csproj index d9e14f8ff0..42ea7c0be8 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net8.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF net8.csproj @@ -31,8 +31,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF netcore31.csproj index 0f20e612f3..50bd9018ca 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/GenICam Capture/GenICam Capture X Demo WPF netcore31.csproj @@ -31,8 +31,8 @@ - - + + 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 ab848f36b3..9b8ec03a4b 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 @@ -27,8 +27,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 4c671628a1..4656de1ce7 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 @@ -27,8 +27,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 475d129c66..01a5574a30 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 @@ -27,8 +27,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 b03d7106f5..6211210c8a 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 @@ -27,8 +27,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 684df43380..0de511d304 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 @@ -26,8 +26,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 21936f3ff3..e4b2be0144 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 @@ -27,8 +27,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 973886d3cd..54ff1a0687 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 @@ -13,8 +13,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 ea69c37809..6ac2539f45 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 @@ -13,8 +13,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 2a16f0a0d6..271643d871 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 @@ -13,8 +13,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 58bed698fd..8f374d0b64 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 @@ -13,8 +13,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 a7bca3923a..d0b20528a0 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 @@ -13,8 +13,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 a004872882..37f3c7eac0 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 @@ -13,8 +13,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 a4b13df161..fa16e96817 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 @@ -14,8 +14,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 cf9c721fd9..c91cfb4103 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 @@ -14,8 +14,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 a13da3492f..5e1e4bfdef 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 @@ -14,8 +14,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 f25720228c..e8a6bcc1f5 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 @@ -14,8 +14,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 83be0cabb1..15aacf56f0 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 @@ -14,8 +14,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 3217d6590f..fb7588abaa 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 @@ -14,8 +14,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net472.csproj index 32222cc353..6db5fce0da 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net472.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net472.csproj @@ -22,8 +22,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net5.csproj index ad0b178a53..d04c0e6898 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net5.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net5.csproj @@ -22,8 +22,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net6.csproj index 5120c720f0..fff90351e0 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net6.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net6.csproj @@ -22,8 +22,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net7.csproj index bf34c39e4a..563ac27860 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net7.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net7.csproj @@ -22,8 +22,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net8.csproj index aa9959afcd..a2825bde18 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net8.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer net8.csproj @@ -22,8 +22,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer netcore31.csproj index 872c1ea9ce..fbf95dfcab 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/Networks Streamer/Networks Streamer netcore31.csproj @@ -22,8 +22,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 13e8c7a782..8c96b29827 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 @@ -14,8 +14,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 a7c8c26128..9f93326c97 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 @@ -14,8 +14,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 197bb35cee..fef48e4068 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 @@ -14,8 +14,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 20048f17d5..db89f2275b 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 @@ -14,8 +14,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 e2eaa2aa74..58a33ed7f3 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 @@ -14,8 +14,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 0d20ccf7df..1155b5aa96 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 @@ -14,8 +14,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 a7efbe11a6..0f4b4b52f7 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 @@ -17,8 +17,8 @@ - - - + + + 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 5c9da86ab8..ad240f95a2 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 @@ -17,8 +17,8 @@ - - - + + + 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 ac9ec28a86..caad110d18 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 @@ -17,8 +17,8 @@ - - - + + + 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 f7f1e5f002..f18a64aeb8 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 @@ -17,8 +17,8 @@ - - - + + + 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 9b55bc21c0..6c9a5f735f 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 @@ -17,8 +17,8 @@ - - - + + + 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 17374163bb..889603b80e 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 @@ -17,8 +17,8 @@ - - - + + + 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 2a448bc53c..73a49ed3a5 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 @@ -17,7 +17,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 a66a4f44ad..d932406ffe 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 @@ -17,7 +17,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 0ef2a1c0f2..96a22af731 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 @@ -17,7 +17,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 99d3fe8ba6..de62a2a92b 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 @@ -17,7 +17,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 bbaedadb9a..b7dd2972b6 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 @@ -17,7 +17,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 03d6f9d9cd..7274d59a4a 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 @@ -17,7 +17,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net472.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net472.csproj index 1ba42361ab..fb9ec61ee7 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net472.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net472.csproj @@ -16,8 +16,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net5.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net5.csproj index cd4c225336..059e7ffea1 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net5.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net5.csproj @@ -16,8 +16,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net6.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net6.csproj index 3639646628..51dc493a6a 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net6.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net6.csproj @@ -16,8 +16,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net7.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net7.csproj index 0a56fe60f2..5c5bce8aec 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net7.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net7.csproj @@ -10,8 +10,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net8.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net8.csproj index a217893b30..885409e56a 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net8.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker net8.csproj @@ -16,8 +16,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker netcore31.csproj b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker netcore31.csproj index bf4f55830b..81694ac057 100644 --- a/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/WPF/CSharp/USB3V-GigE Spinnaker/USB3V-GigE Spinnaker netcore31.csproj @@ -16,8 +16,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 7caa3e7044..06ee7fe6c6 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 @@ -14,8 +14,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 58e4e36d04..7be70ef80d 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 @@ -14,8 +14,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 1947e2d4d1..963546cf8f 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 @@ -14,8 +14,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 0c510be86b..862ec44488 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 @@ -14,8 +14,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 08e2728cf1..e92ac5c88b 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 @@ -14,8 +14,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 aca9e9e7b7..62157b914b 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 @@ -14,8 +14,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 52a83f9d0a..f323250d73 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 @@ -14,8 +14,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 73ba0407ab..2437e77db8 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 @@ -14,8 +14,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 09c35296ac..9c40e41131 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 @@ -14,8 +14,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 9233ee59b3..69c2730ff6 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 @@ -14,8 +14,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 e3205e756a..24fc711649 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 @@ -14,8 +14,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 8e26df14fb..1670071aec 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 @@ -14,8 +14,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net472.csproj index 4016a35eff..f7e4098b70 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net472.csproj @@ -17,8 +17,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net5.csproj index 496b26a5f0..385319ea74 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net5.csproj @@ -23,8 +23,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net6.csproj index 1795b73d0a..c467ec769b 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net6.csproj @@ -23,8 +23,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net7.csproj index a4b3fd56c1..0200c26f4c 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net7.csproj @@ -23,8 +23,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net8.csproj index c340f95dd5..4dc1dc8fe0 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x net8.csproj @@ -23,8 +23,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x netcore31.csproj index 9f3d334b8c..cb4500d1b0 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-capture-mp4/ip-camera-capture-mp4-x netcore31.csproj @@ -23,8 +23,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net472.csproj index 60521aa252..8f7966e7e1 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net5.csproj index d77006289d..07fda88d1d 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net5.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net6.csproj index bed1d520a2..07a96463b0 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net6.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net7.csproj index dec925e20a..bcd91c2c1d 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net7.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net8.csproj index 8f3a0331f7..b109325b99 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x net8.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x netcore31.csproj index 816ef3d00b..5349ab1f86 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/ip-camera-preview/ip-camera-preview-x netcore31.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net472.csproj index 4d421871e6..09f2f78c26 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net472.csproj @@ -15,7 +15,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net5.csproj index 2da7091c48..1ead4763f5 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net6.csproj index f6274ac5d3..bba583a230 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net7.csproj index 4ff44f332e..b3a4e5feac 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net8.csproj index 557da490b3..32df3e8cd7 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x netcore31.csproj index 9636c05f0c..73c1d21a2c 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-avi/screen-capture-avi-x netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net472.csproj index 6cef821d32..f6770b524a 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net5.csproj index 73cb04f54e..e22f529579 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net5.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net6.csproj index 6a01806c7a..752e9972d1 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net6.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net7.csproj index ba8484834d..1b74fc56bb 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net7.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net8.csproj index bd40df4926..a1e840baa0 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x net8.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x netcore31.csproj index 42c166e645..8251b26fd1 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-mp4/screen-capture-mp4-x netcore31.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net472.csproj index f5541d82c3..b8bf403d96 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net5.csproj index 8c0f60cc8a..ce9ac98b3a 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net5.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net6.csproj index 4682d6e2b0..c71f5f9708 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net6.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net7.csproj index 062162be39..91519bbe6e 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net7.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net8.csproj index 1521aede19..90111e1641 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x net8.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x netcore31.csproj index 95e03f3417..0cc209e371 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-webm/screen-capture-webm-x netcore31.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net472.csproj index 93eea514e7..b9b7d6b65e 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net5.csproj index f01088fbf9..0f5c0040ba 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net5.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net6.csproj index 73a84e325a..710f8c64cc 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net6.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net7.csproj index df40d47a28..2f3d09581c 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net7.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net8.csproj index cf99a69e30..ed3eae14dd 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x net8.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x netcore31.csproj index 0d0fd41b6b..5348099c2d 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/screen-capture-wmv/screen-capture-wmv-x netcore31.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net472.csproj index 09778f79a5..177b254b6c 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net472.csproj @@ -73,7 +73,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net5.csproj index ba162ab891..2c9cf24277 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net5.csproj @@ -77,7 +77,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net6.csproj index 4ff8ebdff5..97c4ac674c 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net6.csproj @@ -77,7 +77,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net7.csproj index 6da1b77885..c4f769007c 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net7.csproj @@ -77,7 +77,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net8.csproj index e18fd7c5de..f138a4ec89 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x net8.csproj @@ -77,7 +77,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x netcore31.csproj index 4cb9c754c3..96fe2a8b17 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/speaker-capture/speaker-capture-x netcore31.csproj @@ -77,7 +77,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net472.csproj index 861a8f6c2c..cc0bd8f086 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net472.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net5.csproj index 497ba6c3f9..375a9eb4ed 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net5.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net6.csproj index 0e4f6c569c..afe31a79a9 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net6.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net7.csproj index 6755293ea7..0504f41d55 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net7.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net8.csproj index c18e034255..b59288a2d8 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x net8.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x netcore31.csproj index 9fc1dbefe4..6da2e45977 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-image-overlay/video-capture-image-overlay-x netcore31.csproj @@ -21,8 +21,8 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net472.csproj index 7980b09785..c5118c5f00 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net5.csproj index 33bbff2f22..c918c07b71 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net5.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net6.csproj index 8247d32219..94463a21c4 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net6.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net7.csproj index 6350c1f7a9..85c22b9cd3 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net7.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net8.csproj index 8d6d2b9ae3..0294e6eb7f 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x net8.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x netcore31.csproj index 4b3ba64c49..cbea4087ee 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-text-overlay/video-capture-text-overlay-x netcore31.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net472.csproj index df2b8e4778..175fe627aa 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net472.csproj @@ -21,7 +21,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net5.csproj index aff9da7cb3..41b3bcff22 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net5.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net6.csproj index be5e25a876..867ceeac03 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net6.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net7.csproj index d0d96d3858..ef3797d100 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net7.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net8.csproj index 4c82af6584..9ab9930717 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x net8.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x netcore31.csproj index 5c48a9bd37..caceaff23c 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-avi/video-capture-webcam-avi-x netcore31.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net472.csproj index 15fd1a3e69..be02cabf01 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net472.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net5.csproj index d057cf85ad..466dee933a 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net5.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net6.csproj index 0cb9820e02..42f4e8056f 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net6.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net7.csproj index f9f4b2888f..438bf9edd7 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net7.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net8.csproj index 0148e6a01b..89568647f6 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x net8.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x netcore31.csproj index af3f6d5f0f..b9e269d07d 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-mp4/video-capture-webcam-mp4-x netcore31.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net472.csproj index 33a566c1bf..5c9d8eea0d 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net472.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net5.csproj index 97fa58a876..622a4fcdc8 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net5.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net6.csproj index 95e3bdf118..161dfafec6 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net6.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net7.csproj index 58c87125ed..ae91bc27f4 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net7.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net8.csproj index 456c2ab470..aa9ff592a6 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x net8.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x netcore31.csproj index 339c9665ea..5bd3c292bc 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-capture-webcam-wmv/video-capture-webcam-wmv-x netcore31.csproj @@ -27,7 +27,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net472.csproj index b5402f999c..31d232af1f 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net472.csproj @@ -26,7 +26,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net5.csproj index dca7943245..7ba7084184 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net5.csproj @@ -26,7 +26,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net6.csproj index 96d8a9e1ce..5c68288de8 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net6.csproj @@ -26,7 +26,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net7.csproj index 2976a3a953..425e39b453 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net7.csproj @@ -26,7 +26,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net8.csproj index 29745578ae..468336290c 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x net8.csproj @@ -26,7 +26,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x netcore31.csproj index 7f0764bca4..ccced4ec72 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/video-preview-webcam-frame-capture/video-preview-webcam-frame-capture-x netcore31.csproj @@ -26,7 +26,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net472.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net472.csproj index a0a44e141c..08ea992e41 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net472.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net472.csproj @@ -72,7 +72,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net5.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net5.csproj index ac3c5fbb79..c8c729367a 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net5.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net5.csproj @@ -72,7 +72,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net6.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net6.csproj index 08e14e23b9..6f1bc0b137 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net6.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net6.csproj @@ -72,7 +72,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net7.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net7.csproj index a96f78233f..5fdea63bcb 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net7.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net7.csproj @@ -72,7 +72,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net8.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net8.csproj index df78b4d5e0..c9b3b61f7e 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net8.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x net8.csproj @@ -72,7 +72,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x netcore31.csproj b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x netcore31.csproj index 710f5b88fd..14b5fc06f6 100644 --- a/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x netcore31.csproj +++ b/Video Capture SDK X (crossplatform)/_CodeSnippets/webcam-preview/webcam-preview-x netcore31.csproj @@ -72,7 +72,7 @@ - - + + diff --git a/Video Capture SDK X (crossplatform)/iOS/PhotoCapture/PhotoCapture net7.csproj b/Video Capture SDK X (crossplatform)/iOS/PhotoCapture/PhotoCapture net7.csproj index 1dedb581f9..a164fa501f 100644 --- a/Video Capture SDK X (crossplatform)/iOS/PhotoCapture/PhotoCapture net7.csproj +++ b/Video Capture SDK X (crossplatform)/iOS/PhotoCapture/PhotoCapture net7.csproj @@ -11,8 +11,8 @@ iPhone Developer - - + + diff --git a/Video Capture SDK X (crossplatform)/iOS/PhotoCapture/PhotoCapture net8.csproj b/Video Capture SDK X (crossplatform)/iOS/PhotoCapture/PhotoCapture net8.csproj index 9e7565b023..b0c7b9fa1d 100644 --- a/Video Capture SDK X (crossplatform)/iOS/PhotoCapture/PhotoCapture net8.csproj +++ b/Video Capture SDK X (crossplatform)/iOS/PhotoCapture/PhotoCapture net8.csproj @@ -11,8 +11,8 @@ iPhone Developer - - + + diff --git a/Video Capture SDK X (crossplatform)/macOS/ScreenCapture/ScreenCapture.csproj b/Video Capture SDK X (crossplatform)/macOS/ScreenCapture/ScreenCapture.csproj index c1504da5a6..8cc49ade6e 100644 --- a/Video Capture SDK X (crossplatform)/macOS/ScreenCapture/ScreenCapture.csproj +++ b/Video Capture SDK X (crossplatform)/macOS/ScreenCapture/ScreenCapture.csproj @@ -18,8 +18,8 @@ None - - + + diff --git a/Video Capture SDK X (crossplatform)/macOS/SimpleVideoCapture/SimpleVideoCapture.csproj b/Video Capture SDK X (crossplatform)/macOS/SimpleVideoCapture/SimpleVideoCapture.csproj index 116484fd31..1882f0cb31 100644 --- a/Video Capture SDK X (crossplatform)/macOS/SimpleVideoCapture/SimpleVideoCapture.csproj +++ b/Video Capture SDK X (crossplatform)/macOS/SimpleVideoCapture/SimpleVideoCapture.csproj @@ -7,8 +7,8 @@ 14.00 - - + + 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 3d3255b2c3..b604d6bd92 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 fd492c28bc..769e473352 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 8800cc4c5f..24836142da 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 f49a98c0de..3334af0524 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 3fb177330f..d9c65bbb64 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 e843255ccc..f9bd249858 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 f11b3758ba..c5ae39583f 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 08d366840c..4512d6b4df 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 d68337e86f..c6db8e758c 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 5b86e55a90..75f81593f1 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 98a69739de..b0ee0fd672 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 1eca8f94ce..b62b7c78c3 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 7c8b7cb1d6..5ee2affba5 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 4140c13d40..ef9435338b 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 9c51a9219c..2d4c5bb4a1 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 6dc66c2791..fbf59cc353 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 6d4d2c56f0..ac8395450e 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 930969bc68..5cb7f5cc11 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 52d539dac0..bbf0f5e0c2 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 621c52ee43..efa75cbaf7 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 3507e163cf..cc7ba29880 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 dcb5074112..c377aff00b 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 7698ccf6ce..b747aaa7d0 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 d028dfaea0..88acddd8fd 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 21b30d2bdc..f289776276 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 387c738219..c20b13fe6d 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 0a3f480a2c..d5ca4bc3c3 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 41f19dafb0..20dd98f8a7 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 75cf93f954..7f4b288590 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 14a6ae1dae..7bcf260761 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 de71cbc1d4..7e7193b561 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 d775f40974..28a8e8575e 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 1b965adcf9..d6ae15ed27 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 9b73809da0..d432b2a0f4 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 32c2a75b1b..78057316e5 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 3de05d8bc2..11bc7b107d 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 9cd2f12d3f..64558a9f28 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 8cbdfdd94f..2538265195 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 cc28f73618..ab81fabff4 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 eb863ccc3d..027f0ce69f 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 a0a05cbe85..dc3a81a50d 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 be91b619ea..eb99d20f35 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 22c3ee6fd7..3661244945 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 0c2d66ac18..455d54561a 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 020826d7dc..1880c341e0 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 84b7664cc5..70e67e64e8 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 b482a9c292..4c525aa765 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 829091cc49..b4ed434a74 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 1235cf5aea..66f843236c 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 74ab020e0f..4f365b902e 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 834fc01479..758126253f 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 563a458e7b..0a0d6c54f2 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 63e21fd402..77e4224337 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 49b8e6ac90..bf6f4abecc 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 acd702a191..151250b34b 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 0177218f75..484dc24815 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 d63aa0491c..1d2bd324a0 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 fae22fa85d..0e04971baa 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 b2b289f497..0af68f5d71 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 a05f261033..3dd6641aac 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 223fd129aa..869c533bab 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 91c67f1df7..70679a8ad3 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 ce4b62f732..58db452cf7 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 58f7d0bf3e..7d41f2ed2d 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 2e4f9104ee..ed80f2f692 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 8c10fcfa6b..0203172ee1 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 68f94ac8a7..71e8ffb785 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 7ad4ee3056..fa050fdc7d 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 b8e566021b..a158a12ca4 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 0875a0a47a..11889c414a 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 f644479b67..02a67862f7 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 e6001e4dc1..2aaf10fb6c 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 3fe938a6c8..cbbd545940 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 85af3bd96e..8092785f38 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 09c64f68c8..727629cf62 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 68659a4d1c..bc5c67ec35 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 9b1b075476..9b35a3e4c7 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 9dc96600da..5729f0e60b 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 27a5c71a45..f98c1945b6 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 3d7f719eb4..4d37204c9d 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 0d4e8f1489..70af1d1247 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 e19d7c7414..dc08b053ed 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 124abbea46..75e4b43b64 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 09f16dbe3c..0d7dd3cf83 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 026ea6480b..03503ad3a0 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 878a12f6c4..7a8b50d8d9 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 eccb9774f2..70905a6d27 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 661873dd23..fa79d04fe0 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 d42f83e841..2d3b41811c 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 53cf1066b7..f6c8eee533 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 dda291aeb2..ea65115a98 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 e6ffe6409c..0a44c2b290 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 ef3c9e3d06..7ca68c78ca 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 c0c57c29dc..8a81033f6f 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 2ebda8e9ac..ecae90f03e 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 ffa962eab6..595a20a9b5 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 12e67524b0..67256e795a 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 22f4aa7dc9..7922c67121 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 11141dd2e6..5dfd800b18 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 9fc6e82971..ee0a8fec9e 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 ae6030539f..ab096eb435 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 d3a0427431..c8bda2f83f 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 a3e80b827d..e678bd22ef 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 2f644954f3..8766e92c77 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 91370170dc..8e80a2cf0b 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 cfb0ac4598..749871813f 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 0219de1e5f..3cf620c03c 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 f1bea325dc..2a2dcff2af 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 cb125d7610..8d749364b1 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 781a22101b..77d0ccee84 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 374542870b..e1801bebdf 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 0882f4b4cf..2ae43b55a5 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 1beb4a6d02..a1ae20e0a9 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 d3fb0499d9..2bbbde9ea2 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 64e8083c6e..ec605a02f5 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 e6624bc424..5d1a8aebb8 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 26488bbf21..f29b31a036 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 d1cccc5b0f..2713460472 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 0310d70a77..df97961484 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 de5aef21e5..dceffcab03 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 1e1c19a63d..b6bca73528 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 942ad10b5f..9d63b114e3 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 48c1447550..d008e143d3 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 b3b35f96a5..0f59dda8e9 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 b1cefcd38a..8606c898c3 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 d5a4b5d07a..5a533dc73a 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 b5ebc67a60..b518913f65 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 39789fb8da..6dd3d76362 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 aeabf856a1..c5b1a1d4fa 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 1680c4343d..062f830ae6 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 ecfaf4c921..60b2cf64ef 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 1d68f9eeab..7dedc73ad9 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 9e888fca17..69363e1241 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 6c50f979e5..d5fc669f04 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 b5e3ca4656..d80a6fd9d8 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 87ce761b8a..6cb3e668d1 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 df6707f263..5f3f54cf1e 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 5f3732bf31..5171b9eaf9 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 fe91afa60b..29a24bc360 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 1ea1b736c9..94fbdb9eed 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 5eba28d4b2..a353e74ec5 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 be38103b71..d21777e500 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 ee129e81bd..eee776be32 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 c2ce26e133..c90aa0db75 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 c706b9fed4..24e43a45a0 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 9898bc5875..27e68c06df 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 223028c3c0..1f2c08a3b5 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 b4917cfa2c..92514aae54 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 c8a9f2eb5b..568b96964c 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 d7374b68f5..4907c62c09 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 81fdbb6dde..712e7070c3 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 414224583c..276595f6b9 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 a361ef40b8..ae5acb7f2f 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 a7f5a021ce..4f3364a8cc 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 242040a080..8e2f9af66d 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 7a9f8ffa4c..f9498781ac 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 120e000d92..39d7a21fd8 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 1079665c5f..6472584054 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 051cbf1c37..c5c8bd3419 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 b5792a2fc9..2c465acd68 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 3cc31420d0..34622f08ca 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 6ec0bd16b7..b2087ed35e 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 0745acda95..1242854feb 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 6c74953a4e..15d699a8ac 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 bd670cec50..6373fee35d 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 43ba991050..d8f865ae3a 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 b8f5129812..b8b1f3ff83 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 6c5e3ea9db..8f895ec484 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 02f215c763..5172279973 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 2c24e062e9..2c6b4b6e4e 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 55f57ad352..b23771b035 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 17918d46fb..78315641c1 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 19efdb90ff..0dca784916 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 771c46b43d..9828fe3e75 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 dda68fe550..ea3d3f211d 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 49e5bf0f50..6366ff0086 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 de672c50e9..c197d7078f 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 7d5bef3e75..f542de733d 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 d0e5689d53..c27c4f7019 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 aa2ba66428..11ae42aba0 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 e3ae177003..5c31c8d6ac 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 5ed4a1451a..bcb205270c 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 8be5d6b466..5161a19c55 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 c0da41da0f..7cd713c932 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 fb12842757..24ef264354 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 0c16d341d1..826f78a900 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 120adcae20..27cfedc6f5 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 fef7aab776..a4bd38f8a8 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 0f4cbc5862..bc769eb190 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 89c5962877..5a0df7d446 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 1b4e6d7356..3426ef0957 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 e2ca10a905..42fe6d6c25 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 7430fac312..5d4ad4cbef 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 8826fdfea9..8a25f33a8d 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 f3a30807c1..126b371546 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 a37d91dd1e..9d3e5ffe1c 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 4b70901600..3529afaeb3 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 811d316481..84db2ee758 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 d46239184e..dc64bce8b6 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 fba48e0950..f9e304a651 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 2c236a21fb..b1d1687b9d 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 fb40e9ba36..f91428bad9 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 d03bdd1b5a..47481cec9b 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 d43aefbd09..c4f26a37b7 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 de3e7c953e..01779c9eae 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 be9d7911c4..14b4b93e8b 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 4e47948e90..a11b16d06a 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 8652536f72..11740bfd57 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 620c8076fa..a98c25486d 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 0d71d3b93c..509c63bcfd 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 db626ef712..afe9b34cc7 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 1a5f54e008..345d131c76 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 7b404fddd4..c6acec8eab 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 dbf1c4d486..26a0133ac3 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 5c6deb16e2..929b508f24 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 c755357d46..b5dbe2f87e 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 12f1e7880b..8c783fe6e3 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 6199484a7b..14afb3cadd 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 734c210baa..810f5fedf4 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 7230b5e004..632cdb2243 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 4a22a04cf0..ac90ecc1a4 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 c1a03ef318..0d7c921e7d 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 847aa597bc..fb7324b0cf 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 e955f75feb..5dca781be5 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 c52dd17ae1..4fa163811f 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 2a7b0b1051..47d60b116d 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 549c488149..37968d1c71 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 14e9743006..bf14086b30 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 5659d88322..f15d878e02 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 f8e6cb09fa..4ad16ddcf2 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 5e3d240a62..c8fc01a04c 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 88a252be56..2198d99e1c 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 90509593d8..dace140a49 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 cba359c032..0dcce11142 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 @@ -127,14 +127,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 2e90128bda..a25b0ec54e 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 @@ -127,14 +127,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 413535fda4..14c6e50c0c 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 @@ -124,8 +124,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 318fbeee5e..80fce56a41 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 @@ -124,8 +124,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 24765aed60..116114e834 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 3d10c1f75c..eeef69e2fd 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 26d8e82979..1f49303f7f 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 @@ -124,10 +124,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 d59e43303d..002f9d72f2 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 @@ -124,10 +124,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 42936718c3..8348dc4f8b 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 @@ -124,8 +124,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 60153411a9..5805c514d4 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 @@ -124,8 +124,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 2097d308da..285d671294 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 9524b4cf2d..8c117d1c81 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 936ce66d15..7687f93c24 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 1a85556169..117c8dc028 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 32c28a5f9d..106ec54482 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 b93d60cbe0..58c915f405 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 @@ -40,13 +40,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 e071239aae..b4ae620b83 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 b8007aaec5..af78cf8adf 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 1863591bb4..476e0c198e 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 0064a9a252..353c059457 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 dcb39fb517..f4c9156e69 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 ce513aa75c..1eb9b0f50e 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 efa565a617..1f5a0949d9 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 cf426c9b6e..89ce6c8ea8 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 5f980f1bf9..88117cd1f3 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 eedcc61575..294d72c8d6 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 619c02b7c4..2f2e31df9c 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 69b2e4a36f..4e8f1a1cd8 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 c9610c0dc4..18a118bca0 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 61e6c53575..ffa3bfa8c2 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 88d53a2eb1..e6eea341be 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 2f938711aa..370203346f 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 217e18e12e..eb5800753f 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 fb2881f8cc..4c5efecdce 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 7ee3dc820f..846d5d9d78 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 6f959ee969..e26414c28c 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 67c9891525..5c7039e344 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 2d1d4a2891..13ffa9fc88 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 4b03045620..14f2e6a586 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 505f024f8c..53267ffb69 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 e710824ce4..8c97f11a94 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 6bbaa21afb..6822c12dee 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 c73bcfb877..9a376c89ee 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 0773838a6a..b16d5d7772 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 f216bef0a1..578804d29b 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 33f9d1fd7d..0c0fff1d53 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 d60d384468..869a6a2777 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 211df0f8ef..acc3aa8322 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 2a5376e434..ef8fdff2e9 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 b719af3b70..05f6382457 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 276ec28547..afaeae8819 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 75fbbc74b3..b9c4bac4ba 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 022a50f101..05d3b3e7e1 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 d3c0e7bdd6..e3e67120ba 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 007280da3f..f40ae8da94 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 b17a987e25..1b823e3cc0 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 d87a4527c4..c337b76a23 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 fa6ccda83b..3bba27e21b 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 93ecd53935..ee75bdf1fc 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 180f8b9b97..1fe876fe75 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 8bfd0c7e80..5ebd8be997 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 557e695d37..85fa336d3d 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 6b2b268285..53241818a5 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 81f90bd934..262a080dbc 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 13ef281dd7..6efbdfea8b 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 318b930a3e..660e312599 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 c719bc9c9c..9fff6cf0af 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 a38d199999..9d09d1fb8f 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 027e44753d..abbd9507f3 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 32b8e25189..37af45f0d8 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 60de7f1360..4af84d36c5 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 9f8a176c5c..10ed654b60 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 dedbbb20d8..6edb36cde5 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 6b7836b928..db1d59a52c 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 64bb2573e0..371b88242b 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 de159fa111..6a91f1b16b 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 1a71dec6e6..53143ff65c 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 3d968f18ec..3e22241e94 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 a0d7581fe0..d72d09cf7f 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 523f2bba08..291fcd5364 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 f3e46c6491..eebd79f243 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 f36efd76e8..96cb232101 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 fd79998234..2f5da869de 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 c9d5edb14c..e2fc2b8707 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 362957739e..79ff226c78 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 b45e478863..c0b51c3608 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 237d194531..5d1e21caae 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 050fa3098f..c98eea6950 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 ad79090d4e..c171e5e0e8 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 153720a740..948c31747a 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 0b4e01a55c..c667ae56c4 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 4f0bfed2a7..bffab66e24 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 417fca1bf8..50cc820f18 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 4a2dd68f13..0c7aaf044b 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 dec671154e..5861311fc4 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 d19435ee79..9103029aeb 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 6705c0ebb7..afce710e80 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 c55378e4c9..4d3fc35072 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 251599f834..2c44f0160f 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 90862f2caa..950a97b3bb 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/VideoJoin/VideoJoinA.csproj b/Video Edit SDK X (crossplatform)/Avalonia/VideoJoin/VideoJoinA.csproj index 42e4730aa4..ca216f2460 100644 --- a/Video Edit SDK X (crossplatform)/Avalonia/VideoJoin/VideoJoinA.csproj +++ b/Video Edit SDK X (crossplatform)/Avalonia/VideoJoin/VideoJoinA.csproj @@ -46,7 +46,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 df05755b40..8857b605fa 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 @@ -47,7 +47,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 2c812bd871..7dcadba11d 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 04910fe9e8..f38e9c53fa 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 a910a6c0c9..2ff0e27b05 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 2853bc51dc..805c2d98fb 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 3f4fda71b3..da02280342 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 aed986c605..9bbdd0b064 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 81a267cb03..c9debe5f99 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 262c97fed8..7712d9f7e9 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 d14c34a2dc..5c2db2a742 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 7990a91908..b195628be4 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 a46687eeb8..1c94f32701 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 4bd0d2fa79..459784a513 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 9e4592e886..26cb24c708 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 3459f95521..297ec1e107 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 d94e59656a..04556b7ee6 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 d77e1b8886..71dfea0d8f 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 9711760bf1..84bb8dd9b4 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 6af3241e55..b8914acb63 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 095a78678b..71b67fad17 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 4c7ddee6cd..d3a28bb1ea 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 559dfae0d3..e20d013969 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 f89c650a52..b975916189 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 da7bea3d22..0fd842dea7 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 677cb7ec15..ac92944105 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 669b391a41..f8199ff782 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 9624cb3da1..09edaaf426 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 557c05551a..79bdb42f37 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 59a7b40d30..2ff2c41971 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 600e94e022..9a39acd045 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 c8b14c148f..29b45ebc53 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 f565458c52..c7bc365c74 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 11044deabd..5ce82b389a 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 be012e1854..b096a4b513 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 1c2f2eb4a5..d92ba97748 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 f704e7691e..05d7c8a3b1 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 7578ec9d51..0ee70d46cc 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 4982e0e1ed..86278ce1b7 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 66b1351166..3d039463b9 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 74e6a73b6f..9694072708 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 a07949ee98..23bf035faf 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 cb925da640..8a65de0d49 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 599a7393dc..780ebe2441 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 ac6ef13b4b..ac6e459f02 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 c31d96d166..8bced2c328 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 1fffb7fec2..6afb3001a0 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 50a84014de..5f48e2247a 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 3185e349fb..8b47a6ec18 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 b1acad2ad3..b82970e919 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 4510327199..ea4cdd6f10 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 7da11c20ac..8947635157 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 33cb6de0c8..2f86923866 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 ca67dd751a..6f2fbc5852 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 f3714625b6..eb2e799bb4 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 67189e1c38..07ab2d220f 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 53ce4892b1..7318024d4f 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 a399c360b9..97542d5873 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 59ce2d6f49..0d1025ca4f 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 d55156b6bc..1b89b690ca 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 167cce816d..9eb86166ed 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 08db4d3196..ff0e40a3f1 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 7bd2c82b48..6f0f508d93 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 18ac9330ca..8370bc8915 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 c034168730..38940308b7 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 b7aef34b8c..694042220e 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 65cc6f001a..3be41e2162 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 f4e5a89361..15b84e4b8e 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 f0fa0e8e4d..6e6b124582 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 b24ccd8fc5..92c3b886ad 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 31bd96685a..7bdea5407f 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 aba39e7d20..e2726d595d 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 1b4696fee3..22dee92c83 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 5f1262475c..e8b8530b01 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 cdd468faa9..bccadd4668 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 041b245318..f7498b55dd 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 b16917cd19..d28d05a3ed 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 7eb92255cd..821f13731d 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 3c952c08d2..155bdd7850 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 00a601d75d..34982675e9 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 bf24bc281b..4d6468430a 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 dee5ad878b..2e6be5f7be 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 7f49fcac7b..1186703840 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 024525e1dd..1081337b90 100644 --- a/changelog.md +++ b/changelog.md @@ -31,7 +31,10 @@ Changes and updates for all .Net SDKs * [X-engines] Updated Linux support for `ALSA`, `PulseAudio` and `PipeWire` audio devices * [X-engines] Updated Linux support for `V4L2` devices * [X-engines] Avalonia samples has be changed to a modern 1-project structure - +* [X-engines] Resolved issue with `MAUI` crashes on Windows after `SkiaSharp` update +* [X-engines] Resolved issue with `TextureView` crashes on Android in `MAUI` applications +* [X-engines] Resolved playback issue for http sources using the `UniversalSourceBlock` + ## 15.9.x ### 15.9.89