diff --git a/.idea/.idea.VPR_ShadowStream/.idea/.name b/.idea/.idea.VPR_ShadowStream/.idea/.name new file mode 100644 index 0000000..7203170 --- /dev/null +++ b/.idea/.idea.VPR_ShadowStream/.idea/.name @@ -0,0 +1 @@ +VPR_ShadowStream \ No newline at end of file diff --git a/ShadowStream/MainWindow.xaml.cs b/ShadowStream/MainWindow.xaml.cs index 26c4283..a400a67 100644 --- a/ShadowStream/MainWindow.xaml.cs +++ b/ShadowStream/MainWindow.xaml.cs @@ -1,4 +1,5 @@ -using System.Text; +using System.Drawing; +using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; @@ -22,6 +23,7 @@ namespace ModuleManager; //Quinn and Reda and Yazan public partial class MainWindow : Window { + //adding base components used threw out the code private static LogHelper loghelper = new LogHelper(); LogWindow log = new LogWindow(loghelper.GetEntries()); @@ -34,8 +36,14 @@ public partial class MainWindow : Window List suportedMusicFiles = new List(); List suportedPhotoFiles = new List(); + //root directory List dirs = new List(); + private int option =0; + int specificOption = 0; + string rootPath = "C:/Users/bib/Desktop/"; + FileScanner fileScanner; + //code start public MainWindow() { InitializeComponent(); @@ -71,10 +79,11 @@ public partial class MainWindow : Window void LoadFromJson(string path, object obj) { - + //add json logic in here } void Createscan() { + //adding all string arrays to one temp array to do the initial scan of the designated drive int count = 0; string[] tmp = new string[suportedMusicFiles.Count + suportedVidioFiles.Count + suportedPhotoFiles.Count]; foreach (var suportedVidioFile in suportedVidioFiles) @@ -94,6 +103,68 @@ public partial class MainWindow : Window tmp[count] = suportedPhotoFile; count++; } + //initialise the file scanner with all files endings wanted fileScanner = new FileScanner(tmp); } + + + //btn logic + void scanButton_Click(object sender, RoutedEventArgs e) + { + List tmp = new List(); + switch (option) + { + case 0: + foreach (var VARIABLE in dirs) + { + foreach (var tmp2 in fileScanner.ScanDriveParallel(VARIABLE).Result) + { + tmp.Add(tmp2); + } + } + break; + case 1: + foreach (var VARIABLE in fileScanner.ScanDriveParallel(dirs[specificOption]).Result) + { + tmp.Add(VARIABLE); + } + + break; + case 2: + foreach (var VARIABLE in fileScanner.ScanDriveParallel(rootPath).Result) + { + tmp.Add(VARIABLE); + } + break; + } + + var classifier = new FileClassifier(); + var (musicFiles, videoFiles,photoFiles) = classifier.ClassifyFilesAsync(tmp, suportedMusicFiles,suportedVidioFiles,suportedPhotoFiles ).Result; + + var separator = new VideoSeparator(); + var (series, movies) = separator.SeparateVideosAsync(videoFiles).Result; + //causes delibrit null refrence exeption. so dont use it!!! :-P + videoFiles = null; + //music list,muvie list,photo list,music list + + + + } + + List ItemCreater(List path, string type,bool isFoto) + { + List items = new List(); + + foreach (var VARIABLE in path) + { + Bitmap frame200 = VideoFrameExtractor.GetFrame200(VARIABLE); + items.Add(new Item(VARIABLE, type,frame200, isFoto)); + } + + return items; + } + + + //scan logic + } \ No newline at end of file diff --git a/ShadowStream/Modules/videoFrameModule.cs b/ShadowStream/Modules/videoFrameModule.cs new file mode 100644 index 0000000..44011c2 --- /dev/null +++ b/ShadowStream/Modules/videoFrameModule.cs @@ -0,0 +1,76 @@ +using FFMediaToolkit.Decoding; +using FFMediaToolkit.Graphics; +using System; +using System.Drawing; +using System.Drawing.Imaging; +using System.Runtime.InteropServices; + +public static class VideoFrameExtractor +{ + public static Bitmap GetFrame200(string videoPath) + { + FFMediaToolkit.FFmpegLoader.FFmpegPath = AppDomain.CurrentDomain.BaseDirectory; + + using var mediaFile = MediaFile.Open(videoPath); + + // Read first two frames to estimate frame rate + if (!mediaFile.Video.TryGetNextFrame(out var firstFrame)) + throw new Exception("Cannot read first frame"); + double firstSeconds = mediaFile.Video.Position.TotalSeconds; + + if (!mediaFile.Video.TryGetNextFrame(out var secondFrame)) + throw new Exception("Cannot read second frame"); + double secondSeconds = mediaFile.Video.Position.TotalSeconds; + + double frameDuration = secondSeconds - firstSeconds; + if (frameDuration <= 0) + throw new Exception("Invalid frame duration calculated"); + + double frameRate = 1.0 / frameDuration; + + int totalFrames = (int)(mediaFile.Info.Duration.TotalSeconds * frameRate); + + const int targetFrameIndex = 200; + if (targetFrameIndex >= totalFrames) + throw new ArgumentOutOfRangeException($"Video has only {totalFrames} frames, cannot extract frame {targetFrameIndex}"); + + // Reopen to reset reading + mediaFile.Dispose(); + using var mediaFile2 = MediaFile.Open(videoPath); + + int currentFrameIndex = 0; + Bitmap targetFrameBitmap = null; + + while (mediaFile2.Video.TryGetNextFrame(out var frame)) + { + if (currentFrameIndex == targetFrameIndex) + { + targetFrameBitmap = ImageDataToBitmap(frame); + break; + } + currentFrameIndex++; + } + + if (targetFrameBitmap == null) + throw new Exception($"Failed to extract frame {targetFrameIndex}"); + + return targetFrameBitmap; + } + + private static Bitmap ImageDataToBitmap(ImageData imageData) + { + var bitmap = new Bitmap(imageData.ImageSize.Width, imageData.ImageSize.Height, PixelFormat.Format24bppRgb); + var bmpData = bitmap.LockBits( + new Rectangle(0, 0, bitmap.Width, bitmap.Height), + ImageLockMode.WriteOnly, + bitmap.PixelFormat); + + // Convert Span to byte[] for Marshal.Copy + Marshal.Copy(imageData.Data.ToArray(), 0, bmpData.Scan0, imageData.Data.Length); + + bitmap.UnlockBits(bmpData); + + return bitmap; + } + +} diff --git a/ShadowStream/Obejeckte/Catagory.cs b/ShadowStream/Obejeckte/Catagory.cs index 2dacef4..d371d4c 100644 --- a/ShadowStream/Obejeckte/Catagory.cs +++ b/ShadowStream/Obejeckte/Catagory.cs @@ -2,6 +2,7 @@ namespace ShadowStream.Obejeckte; //Quinn public class Catagory { + //basic code for catatgorys next public readonly string name; List items = new List(); diff --git a/ShadowStream/Obejeckte/Item.cs b/ShadowStream/Obejeckte/Item.cs index 9f23fcf..7cb6780 100644 --- a/ShadowStream/Obejeckte/Item.cs +++ b/ShadowStream/Obejeckte/Item.cs @@ -5,6 +5,7 @@ namespace ShadowStream.Obejeckte; //Quinn public class Item { + //public data Label name; string path; string type; @@ -12,7 +13,7 @@ public class Item Button playButton; bool isFoto; - + //initilise the item public Item(string path, string type,BitmapImage image,bool isFoto) { this.path = path; @@ -23,6 +24,7 @@ public class Item playButton.Content = "Play"; this.isFoto = isFoto; } + //return the entire item so it can be displaid direckly public (Label ,string,Button,BitmapImage,DockPanel) CreateLable(int[] gridPosition, Grid grid) { DockPanel dockPanel = new DockPanel(); @@ -30,16 +32,17 @@ public class Item dockPanel.Children.Add(name); dockPanel.Children.Add(playButton); if (isFoto){ - playButton.Content = "Show"; + playButton.Content = "Show"; } return (name,path,playButton,image,dockPanel); } - + + //return individual data public string getLink() { return path; } - + public string getFormat() { return type; diff --git a/ShadowStream/ShadowStream.csproj b/ShadowStream/ShadowStream.csproj index 87b018d..2401c01 100644 --- a/ShadowStream/ShadowStream.csproj +++ b/ShadowStream/ShadowStream.csproj @@ -15,9 +15,12 @@ + + + diff --git a/ShadowStream/obj/Debug/net8.0-windows/LogHelper/LogWindow.g.cs b/ShadowStream/obj/Debug/net8.0-windows/LogHelper/LogWindow.g.cs index 64b381a..8d4b83e 100644 --- a/ShadowStream/obj/Debug/net8.0-windows/LogHelper/LogWindow.g.cs +++ b/ShadowStream/obj/Debug/net8.0-windows/LogHelper/LogWindow.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\..\LogHelper\LogWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BA5FF02A0D45D498C36D860D99C97E6DAF70C262" +#pragma checksum "..\..\..\..\LogHelper\LogWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3D34AADB0C324304950678A2859D3F2187EFDBB4" //------------------------------------------------------------------------------ // // This code was generated by a tool. diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfo.cs b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfo.cs index ae09f25..983b53e 100644 --- a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfo.cs +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("ShadowStream")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ff158be0c0c504655503c6be3f344f309a220247")] [assembly: System.Reflection.AssemblyProductAttribute("ShadowStream")] [assembly: System.Reflection.AssemblyTitleAttribute("ShadowStream")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfoInputs.cache b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfoInputs.cache index 1b1efd9..17b9148 100644 --- a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfoInputs.cache +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfoInputs.cache @@ -1 +1 @@ -0bae56041e5acc6a180bea6c1aade7966eeda593566125bacbd9f12506047074 +a1323e4f389a69acf1cfa0e8fb8e33c9b2ef05e0c4f052e77d0f3ff6537023f5 diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.GeneratedMSBuildEditorConfig.editorconfig b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.GeneratedMSBuildEditorConfig.editorconfig index f057ffa..d5f6c9e 100644 --- a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.GeneratedMSBuildEditorConfig.editorconfig +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = ShadowStream -build_property.ProjectDir = C:\Users\Elias\Downloads\VPR_ShadowStream\VPR_ShadowStream\ShadowStream\ +build_property.ProjectDir = C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.assets.cache b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.assets.cache index f0aa351..580a7fb 100644 Binary files a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.assets.cache and b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.assets.cache differ diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.csproj.AssemblyReference.cache b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.csproj.AssemblyReference.cache index ba805d1..7544604 100644 Binary files a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.csproj.AssemblyReference.cache and b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.csproj.AssemblyReference.cache differ diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.csproj.FileListAbsolute.txt b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.csproj.FileListAbsolute.txt index 7f14a32..4958f79 100644 --- a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.csproj.FileListAbsolute.txt +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.csproj.FileListAbsolute.txt @@ -876,3 +876,14 @@ C:\Users\bib\Desktop\lea\c# code\file finder test\ShadowStream\obj\Debug\net8.0 C:\Users\bib\Desktop\lea\c# code\file finder test\ShadowStream\obj\Debug\net8.0-windows\ShadowStream.pdb C:\Users\bib\Desktop\lea\c# code\file finder test\ShadowStream\obj\Debug\net8.0-windows\ShadowStream.genruntimeconfig.cache C:\Users\bib\Desktop\lea\c# code\file finder test\ShadowStream\obj\Debug\net8.0-windows\ref\ShadowStream.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\ShadowStream.csproj.AssemblyReference.cache +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\LogHelper\LogWindow.g.cs +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\LogIn.g.cs +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\MainWindow.g.cs +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\App.g.cs +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\ShadowStream_Content.g.cs +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\ShadowStream_MarkupCompile.cache +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\ShadowStream_MarkupCompile.lref +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\ShadowStream.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\refint\ShadowStream.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\ShadowStream.pdb diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.AssemblyInfo.cs b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..983b53e --- /dev/null +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ShadowStream")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ff158be0c0c504655503c6be3f344f309a220247")] +[assembly: System.Reflection.AssemblyProductAttribute("ShadowStream")] +[assembly: System.Reflection.AssemblyTitleAttribute("ShadowStream")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.AssemblyInfoInputs.cache b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..17b9148 --- /dev/null +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a1323e4f389a69acf1cfa0e8fb8e33c9b2ef05e0c4f052e77d0f3ff6537023f5 diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d5f6c9e --- /dev/null +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ShadowStream +build_property.ProjectDir = C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.GlobalUsings.g.cs b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.assets.cache b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.assets.cache new file mode 100644 index 0000000..d731ca2 Binary files /dev/null and b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.assets.cache differ diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.sourcelink.json b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.sourcelink.json new file mode 100644 index 0000000..e1b1d83 --- /dev/null +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_31moxzlv_wpftmp.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\*":"https://gitlab.com/NotMoReda1/mediaverwaltung/-/raw/ff158be0c0c504655503c6be3f344f309a220247/*"}} \ No newline at end of file diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_Content.g.cs b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_Content.g.cs new file mode 100644 index 0000000..064707e --- /dev/null +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_Content.g.cs @@ -0,0 +1,855 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlc.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlc.lib")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlccore.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlccore.lib")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dodeca_and_7channel_3dsl_hrtf.sofa")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlsub.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("main.css")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile.css")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_diagonals-thick_18_b81900_40x40.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_diagonals-thick_20_666666_40x40.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_flat_10_000000_40x100.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_100_f6f6f6_1x400.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_100_fdf5ce_1x400.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_65_ffffff_1x400.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_gloss-wave_35_f6a828_500x100.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_highlight-soft_100_eeeeee_1x100.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_highlight-soft_75_ffe45c_1x100.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_222222_256x240.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_228ef1_256x240.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ef8c08_256x240.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ffd27a_256x240.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ffffff_256x240.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jquery-ui-1.8.13.custom.css")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("custom.lua")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("batch_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("create_stream.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("equalizer_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("error_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mosaic_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("offset_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("stream_config_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("stream_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("favicon.ico")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("audio-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("back-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("buttons.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("folder-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("other-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("speaker-32.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("video-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlc-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlc16x16.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("index.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("common.js")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("controllers.js")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jquery.jstree.js")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui.js")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_browse.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_equalizer.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_view.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse.json")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist.json")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist_jstree.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("readme.txt")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("status.json")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("status.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm_cmd.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("view.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm_export.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("cli.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dummy.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dumpmeta.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("http.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("luac.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("host.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("httprequests.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("telnet.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("00_musicbrainz.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("01_googleimage.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("02_frenchtv.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("03_lastfm.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("filename.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("common.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dkjson.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("sandbox.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("simplexml.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("anevia_streams.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("anevia_xml.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("appletrailers.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("bbc_co_uk.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("cue.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dailymotion.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jamendo.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("koreus.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liveleak.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("newgrounds.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("rockbox_fm_presets.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("soundcloud.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("twitch.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vimeo.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vocaroo.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("youtube.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("icecast.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jamendo.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_concat_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_imem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_mms_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_srt_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_wasapi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libattachment_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluray-awt-j2se-1.3.2.jar")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluray-j2se-1.3.2.jar")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcdda_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdcp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdtv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfilesystem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libftp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhttps_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhttp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libidummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libimem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblibbluray_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblive555_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnfs_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librist_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librtp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsatip_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscreen_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsdp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsftp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libshm_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsmb_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtcp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtimecode_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libudp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvcd_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvdr_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_dummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_file_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_http_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_livehttp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_rist_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_shout_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_srt_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_udp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudiobargraph_a_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudio_format_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libchorus_flanger_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcompressor_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libequalizer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgain_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libkaraoke_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnormvol_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libparam_eq_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libremap_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscaletempo_pitch_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscaletempo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsimple_channel_mixer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspatialaudio_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspatializer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspeex_resampler_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstereo_widen_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtospdif_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtrivial_channel_mixer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libugly_resampler_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfloat_mixer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinteger_mixer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libafile_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libamem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectsound_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmmdevice_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwasapi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwaveout_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadpcm_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaes3_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaom_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaraw_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libavcodec_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcc_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcdg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcrystalhd_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcvdsub_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libd3d11va_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdav1d_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libddummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdmo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdvbsub_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdxva2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libedummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflac_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfluidsynth_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libg711_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libjpeg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libkate_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblibass_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblpcm_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmft_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmpg123_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liboggspots_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libopus_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpng_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libqsv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawvideo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librtpvideo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libschroedinger_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscte18_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscte27_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsdl_image_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspdif_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspeex_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspudec_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstl_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsdec_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubstx3g_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsusf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsvcdsub_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtextst_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtheora_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libttml_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtwolame_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libuleaddvaudio_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvorbis_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvpx_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwebvtt_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libx26410b_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libzvbi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d11_filters_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d9_filters_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadaptive_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaiff_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libasf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libau_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libavi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcaf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemuxdump_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_cdg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_chromecast_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_stl_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdiracsys_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectory_demux_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libes_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflacsys_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgme_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libh26x_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libimage_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmjpeg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmkv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmod_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmp4_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmpgv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnoseek_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnsc_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnsv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnuv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libogg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libplaylist_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libps_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpva_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawaud_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawdv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawvid_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsmf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubtitle_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libts_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtta_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libty_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvc1_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvobsub_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvoc_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwav_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libxa_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfile_keystore_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmemory_keystore_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libconsole_logger_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblua_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfolder_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtaglib_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaddonsfsstorage_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaddonsvorepository_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfingerprinter_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgnutls_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libxml_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_asf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_avi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_dummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_mp4_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_mpjpeg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ogg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ps_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ts_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_wav_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_av1_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_copy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_dirac_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_dts_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_flac_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_h264_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_hevc_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mlp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpeg4audio_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpeg4video_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpegaudio_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpegvideo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_vc1_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmicrodns_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libupnp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwindrive_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudiobargraph_v_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblogo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmarq_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmosaic_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libremoteosd_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librss_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsdelay_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libarchive_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaribcam_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcache_block_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcache_read_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhds_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinflate_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libprefetch_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librecord_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libskiptags_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_autodel_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_bridge_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_chromaprint_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_chromecast_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_delay_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_description_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_display_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_dummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_duplicate_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_es_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_gather_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_mosaic_bridge_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_record_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_setid_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_smem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_standard_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_stats_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_transcode_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfreetype_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsapi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtdummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libchain_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgrey_yuv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_10_p010_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_nv12_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_mmx_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_sse2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_mmx_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_sse2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_i420_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_mmx_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_sse2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librv32_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libswscale_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuvp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuy2_i420_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuy2_i422_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadjust_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libalphamask_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libanaglyph_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libantiflicker_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libball_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libblendbench_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libblend_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluescreen_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcanvas_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcolorthres_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcroppadd_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdeinterlace_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libedgedetection_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liberase_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libextract_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfps_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfreeze_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgaussianblur_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgradfun_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgradient_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgrain_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhqdn3d_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinvert_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmagnify_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmirror_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmotionblur_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmotiondetect_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liboldmovie_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libposterize_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpsychedelic_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpuzzle_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libripple_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscale_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscene_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsepia_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsharpen_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtransform_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvhs_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwave_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcaca_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d11_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d9_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectdraw_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdrawable_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflaschen_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglinterop_dxva2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglwin32_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgl_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvdummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvmem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwgl_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwingdi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwinhibit_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libclone_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpanoramix_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwall_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglspectrum_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgoom_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libprojectm_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvisual_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlc.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlc.lib")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlccore.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvlccore.lib")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dodeca_and_7channel_3dsl_hrtf.sofa")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlsub.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("main.css")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile.css")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_diagonals-thick_18_b81900_40x40.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_diagonals-thick_20_666666_40x40.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_flat_10_000000_40x100.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_100_f6f6f6_1x400.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_100_fdf5ce_1x400.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_glass_65_ffffff_1x400.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_gloss-wave_35_f6a828_500x100.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_highlight-soft_100_eeeeee_1x100.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-bg_highlight-soft_75_ffe45c_1x100.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_222222_256x240.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_228ef1_256x240.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ef8c08_256x240.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ffd27a_256x240.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui-icons_ffffff_256x240.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jquery-ui-1.8.13.custom.css")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("custom.lua")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("batch_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("create_stream.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("equalizer_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("error_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mosaic_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("offset_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("stream_config_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("stream_window.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("favicon.ico")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("audio-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("back-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("buttons.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("folder-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("other-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("speaker-32.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("video-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlc-48.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlc16x16.png")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("index.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("common.js")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("controllers.js")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jquery.jstree.js")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("ui.js")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_browse.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_equalizer.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mobile_view.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse.json")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("browse.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist.json")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("playlist_jstree.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("readme.txt")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("status.json")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("status.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm_cmd.xml")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("view.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vlm_export.html")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("cli.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dummy.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dumpmeta.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("http.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("luac.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("host.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("httprequests.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("telnet.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("00_musicbrainz.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("01_googleimage.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("02_frenchtv.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("03_lastfm.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("filename.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("common.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dkjson.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("sandbox.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("simplexml.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("anevia_streams.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("anevia_xml.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("appletrailers.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("bbc_co_uk.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("cue.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("dailymotion.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jamendo.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("koreus.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liveleak.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("newgrounds.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("rockbox_fm_presets.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("soundcloud.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("twitch.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vimeo.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("vocaroo.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("youtube.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("icecast.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("jamendo.luac")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_concat_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_imem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_mms_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_srt_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_wasapi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libattachment_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluray-awt-j2se-1.3.2.jar")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluray-j2se-1.3.2.jar")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcdda_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdcp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdtv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfilesystem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libftp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhttps_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhttp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libidummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libimem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblibbluray_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblive555_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnfs_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librist_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librtp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsatip_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscreen_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsdp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsftp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libshm_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsmb_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtcp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtimecode_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libudp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvcd_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvdr_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_dummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_file_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_http_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_livehttp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_rist_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_shout_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_srt_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaccess_output_udp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudiobargraph_a_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudio_format_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libchorus_flanger_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcompressor_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libequalizer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgain_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libkaraoke_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnormvol_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libparam_eq_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libremap_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscaletempo_pitch_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscaletempo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsimple_channel_mixer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspatialaudio_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspatializer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspeex_resampler_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstereo_widen_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtospdif_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtrivial_channel_mixer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libugly_resampler_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfloat_mixer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinteger_mixer_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libafile_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libamem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectsound_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmmdevice_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwasapi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwaveout_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadpcm_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaes3_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaom_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaraw_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libavcodec_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcc_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcdg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcrystalhd_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcvdsub_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libd3d11va_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdav1d_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libddummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdmo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdvbsub_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdxva2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libedummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflac_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfluidsynth_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libg711_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libjpeg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libkate_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblibass_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblpcm_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmft_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmpg123_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liboggspots_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libopus_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpng_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libqsv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawvideo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librtpvideo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libschroedinger_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscte18_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscte27_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsdl_image_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspdif_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspeex_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libspudec_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstl_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsdec_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubstx3g_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsusf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsvcdsub_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtextst_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtheora_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libttml_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtwolame_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libuleaddvaudio_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvorbis_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvpx_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwebvtt_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libx26410b_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libzvbi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d11_filters_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d9_filters_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadaptive_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaiff_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libasf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libau_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libavi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcaf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemuxdump_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_cdg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_chromecast_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdemux_stl_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdiracsys_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectory_demux_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libes_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflacsys_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgme_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libh26x_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libimage_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmjpeg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmkv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmod_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmp4_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmpgv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnoseek_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnsc_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnsv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libnuv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libogg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libplaylist_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libps_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpva_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawaud_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawdv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librawvid_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsmf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubtitle_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libts_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtta_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libty_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvc1_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvobsub_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvoc_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwav_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libxa_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfile_keystore_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmemory_keystore_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libconsole_logger_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblua_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfolder_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtaglib_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaddonsfsstorage_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaddonsvorepository_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfingerprinter_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgnutls_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libxml_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_asf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_avi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_dummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_mp4_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_mpjpeg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ogg_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ps_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_ts_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmux_wav_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_av1_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_copy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_dirac_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_dts_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_flac_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_h264_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_hevc_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mlp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpeg4audio_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpeg4video_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpegaudio_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_mpegvideo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpacketizer_vc1_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmicrodns_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libupnp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwindrive_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaudiobargraph_v_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liblogo_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmarq_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmosaic_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libremoteosd_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librss_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsubsdelay_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libarchive_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadf_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libaribcam_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcache_block_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcache_read_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhds_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinflate_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libprefetch_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librecord_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libskiptags_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_autodel_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_bridge_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_chromaprint_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_chromecast_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_delay_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_description_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_display_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_dummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_duplicate_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_es_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_gather_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_mosaic_bridge_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_record_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_setid_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_smem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_standard_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_stats_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libstream_out_transcode_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfreetype_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsapi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtdummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libchain_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgrey_yuv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_10_p010_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_nv12_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_mmx_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_rgb_sse2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_mmx_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi420_yuy2_sse2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_i420_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_mmx_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libi422_yuy2_sse2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("librv32_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libswscale_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuvp_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuy2_i420_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuy2_i422_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libadjust_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libalphamask_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libanaglyph_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libantiflicker_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libball_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libblendbench_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libblend_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libbluescreen_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcanvas_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcolorthres_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcroppadd_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdeinterlace_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libedgedetection_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liberase_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libextract_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfps_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libfreeze_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgaussianblur_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgradfun_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgradient_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgrain_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libhqdn3d_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libinvert_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmagnify_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmirror_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmotionblur_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libmotiondetect_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("liboldmovie_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libposterize_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpsychedelic_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpuzzle_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libripple_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscale_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libscene_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsepia_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libsharpen_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libtransform_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvhs_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwave_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libcaca_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d11_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirect3d9_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdirectdraw_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libdrawable_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libflaschen_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglinterop_dxva2_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglwin32_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgl_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvdummy_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvmem_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwgl_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwingdi_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwinhibit_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libyuv_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libclone_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libpanoramix_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libwall_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libglspectrum_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libgoom_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libprojectm_plugin.dll")] +[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("libvisual_plugin.dll")] + + diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.cache b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.cache index dd1ec52..e1771bc 100644 --- a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.cache +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.cache @@ -4,16 +4,16 @@ winexe C# .cs -C:\Users\Elias\Downloads\VPR_ShadowStream\VPR_ShadowStream\ShadowStream\obj\Debug\net8.0-windows\ +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\ ShadowStream none false TRACE;DEBUG;NET;NET8_0;NETCOREAPP -C:\Users\Elias\Downloads\VPR_ShadowStream\VPR_ShadowStream\ShadowStream\App.xaml +C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\App.xaml 31922853181 - -91463914648 -202-1769545332 +8442008295505 +10801458094 +205-1171809218 LogHelper\LogWindow.xaml;LogIn.xaml;MainWindow.xaml; True diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.lref b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.lref index 6425eaa..797a446 100644 --- a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.lref +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.lref @@ -1,6 +1,6 @@  -FC:\Users\Elias\Downloads\VPR_ShadowStream\VPR_ShadowStream\ShadowStream\LogHelper\LogWindow.xaml;; -FC:\Users\Elias\Downloads\VPR_ShadowStream\VPR_ShadowStream\ShadowStream\LogIn.xaml;; -FC:\Users\Elias\Downloads\VPR_ShadowStream\VPR_ShadowStream\ShadowStream\MainWindow.xaml;; +FC:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\LogHelper\LogWindow.xaml;; +FC:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\LogIn.xaml;; +FC:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\MainWindow.xaml;; diff --git a/ShadowStream/obj/ShadowStream.csproj.nuget.dgspec.json b/ShadowStream/obj/ShadowStream.csproj.nuget.dgspec.json index 3386f16..6932cdc 100644 --- a/ShadowStream/obj/ShadowStream.csproj.nuget.dgspec.json +++ b/ShadowStream/obj/ShadowStream.csproj.nuget.dgspec.json @@ -1,23 +1,23 @@ { "format": 1, "restore": { - "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\ShadowStream.csproj": {} + "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": {} }, "projects": { - "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj": { + "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj", + "projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", "projectName": "file finder test", - "projectPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj", - "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\obj\\", + "projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", + "packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", + "outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\Elias\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -49,9 +49,21 @@ "net8.0": { "targetAlias": "net8.0", "dependencies": { + "FFMediaToolkit": { + "target": "Package", + "version": "[4.6.0, )" + }, + "FFmpeg.AutoGen": { + "target": "Package", + "version": "[7.1.1, )" + }, "Newtonsoft.Json": { "target": "Package", "version": "[13.0.1, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[6.0.0, )" } }, "imports": [ @@ -70,24 +82,24 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" } } }, - "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\ShadowStream.csproj": { + "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\ShadowStream.csproj", + "projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", "projectName": "ShadowStream", - "projectPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\ShadowStream.csproj", - "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\obj\\", + "projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", + "packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", + "outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\Elias\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -102,8 +114,8 @@ "net8.0-windows7.0": { "targetAlias": "net8.0-windows", "projectReferences": { - "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj": { - "projectPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj" + "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": { + "projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj" } } } @@ -123,6 +135,14 @@ "net8.0-windows7.0": { "targetAlias": "net8.0-windows", "dependencies": { + "FFMediaToolkit": { + "target": "Package", + "version": "[4.6.0, )" + }, + "FFmpeg.AutoGen": { + "target": "Package", + "version": "[7.1.1, )" + }, "LibVLCSharp": { "target": "Package", "version": "[3.9.3, )" @@ -135,6 +155,10 @@ "target": "Package", "version": "[13.0.1, )" }, + "System.Drawing.Common": { + "target": "Package", + "version": "[6.0.0, )" + }, "VideoLAN.LibVLC.Windows": { "target": "Package", "version": "[3.0.21, )" @@ -159,7 +183,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" } } } diff --git a/ShadowStream/obj/ShadowStream.csproj.nuget.g.props b/ShadowStream/obj/ShadowStream.csproj.nuget.g.props index c29df0e..bda40b9 100644 --- a/ShadowStream/obj/ShadowStream.csproj.nuget.g.props +++ b/ShadowStream/obj/ShadowStream.csproj.nuget.g.props @@ -5,12 +5,12 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Elias\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\bib\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference 6.12.2 - + \ No newline at end of file diff --git a/ShadowStream/obj/ShadowStream_31moxzlv_wpftmp.csproj.nuget.dgspec.json b/ShadowStream/obj/ShadowStream_31moxzlv_wpftmp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..6932cdc --- /dev/null +++ b/ShadowStream/obj/ShadowStream_31moxzlv_wpftmp.csproj.nuget.dgspec.json @@ -0,0 +1,191 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": {} + }, + "projects": { + "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", + "projectName": "file finder test", + "projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", + "packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", + "outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FFMediaToolkit": { + "target": "Package", + "version": "[4.6.0, )" + }, + "FFmpeg.AutoGen": { + "target": "Package", + "version": "[7.1.1, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[6.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", + "projectName": "ShadowStream", + "projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", + "packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", + "outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": { + "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": { + "projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "dependencies": { + "FFMediaToolkit": { + "target": "Package", + "version": "[4.6.0, )" + }, + "FFmpeg.AutoGen": { + "target": "Package", + "version": "[7.1.1, )" + }, + "LibVLCSharp": { + "target": "Package", + "version": "[3.9.3, )" + }, + "LibVLCSharp.WPF": { + "target": "Package", + "version": "[3.9.3, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[6.0.0, )" + }, + "VideoLAN.LibVLC.Windows": { + "target": "Package", + "version": "[3.0.21, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ShadowStream/obj/ShadowStream_31moxzlv_wpftmp.csproj.nuget.g.props b/ShadowStream/obj/ShadowStream_31moxzlv_wpftmp.csproj.nuget.g.props new file mode 100644 index 0000000..bda40b9 --- /dev/null +++ b/ShadowStream/obj/ShadowStream_31moxzlv_wpftmp.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\bib\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.12.2 + + + + + + \ No newline at end of file diff --git a/ShadowStream/obj/ShadowStream_31moxzlv_wpftmp.csproj.nuget.g.targets b/ShadowStream/obj/ShadowStream_31moxzlv_wpftmp.csproj.nuget.g.targets new file mode 100644 index 0000000..7955a00 --- /dev/null +++ b/ShadowStream/obj/ShadowStream_31moxzlv_wpftmp.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ShadowStream/obj/project.assets.json b/ShadowStream/obj/project.assets.json index b53d892..049a729 100644 --- a/ShadowStream/obj/project.assets.json +++ b/ShadowStream/obj/project.assets.json @@ -2,6 +2,35 @@ "version": 3, "targets": { "net8.0-windows7.0": { + "FFMediaToolkit/4.6.0": { + "type": "package", + "dependencies": { + "FFmpeg.AutoGen": "7.1.1" + }, + "compile": { + "lib/netstandard2.1/FFMediaToolkit.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/FFMediaToolkit.dll": { + "related": ".pdb;.xml" + } + } + }, + "FFmpeg.AutoGen/7.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.1/FFmpeg.AutoGen.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FFmpeg.AutoGen.dll": { + "related": ".xml" + } + } + }, "LibVLCSharp/3.9.3": { "type": "package", "dependencies": { @@ -57,6 +86,28 @@ "lib/netstandard1.0/_._": {} } }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "Newtonsoft.Json/13.0.1": { "type": "package", "compile": { @@ -310,6 +361,35 @@ } } }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Globalization/4.3.0": { "type": "package", "dependencies": { @@ -892,7 +972,10 @@ "type": "project", "framework": ".NETCoreApp,Version=v8.0", "dependencies": { - "Newtonsoft.Json": "13.0.1" + "FFMediaToolkit": "4.6.0", + "FFmpeg.AutoGen": "7.1.1", + "Newtonsoft.Json": "13.0.1", + "System.Drawing.Common": "6.0.0" }, "compile": { "bin/placeholder/file finder test.dll": {} @@ -904,6 +987,40 @@ } }, "libraries": { + "FFMediaToolkit/4.6.0": { + "sha512": "jbLcrLIEXc5jTOPu5ErsTonW/zO1auUkhWl8BksOsW58MXJRnYs1Qf7skFN8lwvFAKbd93E1+Mg3B1WtAIOHiw==", + "type": "package", + "path": "ffmediatoolkit/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ffmediatoolkit.4.6.0.nupkg.sha512", + "ffmediatoolkit.nuspec", + "lib/netstandard2.0/FFMediaToolkit.dll", + "lib/netstandard2.0/FFMediaToolkit.pdb", + "lib/netstandard2.0/FFMediaToolkit.xml", + "lib/netstandard2.1/FFMediaToolkit.dll", + "lib/netstandard2.1/FFMediaToolkit.pdb", + "lib/netstandard2.1/FFMediaToolkit.xml" + ] + }, + "FFmpeg.AutoGen/7.1.1": { + "sha512": "p4FGdG654zut4Iseg7PeYo7sxFMOTuLTEKl/vX+44UQ6NmezF3wHcR6JzjH8xzK4VDPLJe5Xz563kXamMQj7Jg==", + "type": "package", + "path": "ffmpeg.autogen/7.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "README.md", + "ffmpeg.autogen.7.1.1.nupkg.sha512", + "ffmpeg.autogen.nuspec", + "lib/netstandard2.0/FFmpeg.AutoGen.dll", + "lib/netstandard2.0/FFmpeg.AutoGen.xml", + "lib/netstandard2.1/FFmpeg.AutoGen.dll", + "lib/netstandard2.1/FFmpeg.AutoGen.xml" + ] + }, "LibVLCSharp/3.9.3": { "sha512": "af6EBu2bQksw3u6WQ6f18aJN7GenOMmGY8WAAVr2p2RCESg5Usau1/8yxWIJCjsasUY5wQjKAKdVpGpvGFtP+g==", "type": "package", @@ -1005,6 +1122,35 @@ "runtime.json" ] }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, "Newtonsoft.Json/13.0.1": { "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", "type": "package", @@ -1557,6 +1703,45 @@ "system.diagnostics.tracing.nuspec" ] }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, "System.Globalization/4.3.0": { "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", "type": "package", @@ -4224,31 +4409,34 @@ }, "projectFileDependencyGroups": { "net8.0-windows7.0": [ + "FFMediaToolkit >= 4.6.0", + "FFmpeg.AutoGen >= 7.1.1", "LibVLCSharp >= 3.9.3", "LibVLCSharp.WPF >= 3.9.3", "Newtonsoft.Json >= 13.0.1", + "System.Drawing.Common >= 6.0.0", "VideoLAN.LibVLC.Windows >= 3.0.21", "file finder test >= 1.0.0" ] }, "packageFolders": { - "C:\\Users\\Elias\\.nuget\\packages\\": {}, + "C:\\Users\\bib\\.nuget\\packages\\": {}, "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\ShadowStream.csproj", + "projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", "projectName": "ShadowStream", - "projectPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\ShadowStream.csproj", - "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\obj\\", + "projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", + "packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", + "outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\Elias\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -4263,8 +4451,8 @@ "net8.0-windows7.0": { "targetAlias": "net8.0-windows", "projectReferences": { - "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj": { - "projectPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj" + "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": { + "projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj" } } } @@ -4284,6 +4472,14 @@ "net8.0-windows7.0": { "targetAlias": "net8.0-windows", "dependencies": { + "FFMediaToolkit": { + "target": "Package", + "version": "[4.6.0, )" + }, + "FFmpeg.AutoGen": { + "target": "Package", + "version": "[7.1.1, )" + }, "LibVLCSharp": { "target": "Package", "version": "[3.9.3, )" @@ -4296,6 +4492,10 @@ "target": "Package", "version": "[13.0.1, )" }, + "System.Drawing.Common": { + "target": "Package", + "version": "[6.0.0, )" + }, "VideoLAN.LibVLC.Windows": { "target": "Package", "version": "[3.0.21, )" @@ -4320,7 +4520,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" } } } diff --git a/ShadowStream/obj/project.nuget.cache b/ShadowStream/obj/project.nuget.cache index 182e93a..1de4046 100644 --- a/ShadowStream/obj/project.nuget.cache +++ b/ShadowStream/obj/project.nuget.cache @@ -1,64 +1,68 @@ { "version": 2, - "dgSpecHash": "tRgnP4nEAgw=", + "dgSpecHash": "/OVYBiiQ/tY=", "success": true, - "projectFilePath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\ShadowStream.csproj", + "projectFilePath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", "expectedPackageFiles": [ - "C:\\Users\\Elias\\.nuget\\packages\\libvlcsharp\\3.9.3\\libvlcsharp.3.9.3.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\libvlcsharp.wpf\\3.9.3\\libvlcsharp.wpf.3.9.3.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.1\\microsoft.netcore.platforms.1.1.1.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.private.uri\\4.3.2\\system.private.uri.4.3.2.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\Elias\\.nuget\\packages\\videolan.libvlc.windows\\3.0.21\\videolan.libvlc.windows.3.0.21.nupkg.sha512" + "C:\\Users\\bib\\.nuget\\packages\\ffmediatoolkit\\4.6.0\\ffmediatoolkit.4.6.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\ffmpeg.autogen\\7.1.1\\ffmpeg.autogen.7.1.1.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\libvlcsharp\\3.9.3\\libvlcsharp.3.9.3.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\libvlcsharp.wpf\\3.9.3\\libvlcsharp.wpf.3.9.3.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.1\\microsoft.netcore.platforms.1.1.1.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.private.uri\\4.3.2\\system.private.uri.4.3.2.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\videolan.libvlc.windows\\3.0.21\\videolan.libvlc.windows.3.0.21.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/ShadowStream/obj/project.packagespec.json b/ShadowStream/obj/project.packagespec.json index dcf42de..b32bc72 100644 --- a/ShadowStream/obj/project.packagespec.json +++ b/ShadowStream/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\ShadowStream.csproj","projectName":"ShadowStream","projectPath":"C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\ShadowStream.csproj","outputPath":"C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\ShadowStream\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0-windows"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0-windows7.0":{"targetAlias":"net8.0-windows","projectReferences":{"C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj":{"projectPath":"C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0-windows7.0":{"targetAlias":"net8.0-windows","dependencies":{"LibVLCSharp":{"target":"Package","version":"[3.9.3, )"},"LibVLCSharp.WPF":{"target":"Package","version":"[3.9.3, )"},"Newtonsoft.Json":{"target":"Package","version":"[13.0.1, )"},"VideoLAN.LibVLC.Windows":{"target":"Package","version":"[3.0.21, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"},"Microsoft.WindowsDesktop.App.WPF":{"privateAssets":"none"}},"runtimeIdentifierGraphPath":"C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj","projectName":"ShadowStream","projectPath":"C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj","outputPath":"C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0-windows"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0-windows7.0":{"targetAlias":"net8.0-windows","projectReferences":{"C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj":{"projectPath":"C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0-windows7.0":{"targetAlias":"net8.0-windows","dependencies":{"FFMediaToolkit":{"target":"Package","version":"[4.6.0, )"},"FFmpeg.AutoGen":{"target":"Package","version":"[7.1.1, )"},"LibVLCSharp":{"target":"Package","version":"[3.9.3, )"},"LibVLCSharp.WPF":{"target":"Package","version":"[3.9.3, )"},"Newtonsoft.Json":{"target":"Package","version":"[13.0.1, )"},"System.Drawing.Common":{"target":"Package","version":"[6.0.0, )"},"VideoLAN.LibVLC.Windows":{"target":"Package","version":"[3.0.21, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"},"Microsoft.WindowsDesktop.App.WPF":{"privateAssets":"none"}},"runtimeIdentifierGraphPath":"C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/ShadowStream/obj/rider.project.model.nuget.info b/ShadowStream/obj/rider.project.model.nuget.info index 3f17821..3470d99 100644 --- a/ShadowStream/obj/rider.project.model.nuget.info +++ b/ShadowStream/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17480214436041828 \ No newline at end of file +17492036597923536 \ No newline at end of file diff --git a/ShadowStream/obj/rider.project.restore.info b/ShadowStream/obj/rider.project.restore.info index ed4cdb6..5b6844a 100644 --- a/ShadowStream/obj/rider.project.restore.info +++ b/ShadowStream/obj/rider.project.restore.info @@ -1 +1 @@ -17480215621727859 \ No newline at end of file +17492036620731443 \ No newline at end of file diff --git a/file finder test/FileMangerModules/FileClassifier.cs b/file finder test/FileMangerModules/FileClassifier.cs index 48df1ce..302b4d8 100644 --- a/file finder test/FileMangerModules/FileClassifier.cs +++ b/file finder test/FileMangerModules/FileClassifier.cs @@ -8,18 +8,23 @@ namespace file_finder__test; public class FileClassifier { - public async Task<(List musicFiles, List videoFiles)> ClassifyFilesAsync( + //returns 2 seperat lists music and vidio + public async Task<(List musicFiles, List videoFiles, List photoFiles)> ClassifyFilesAsync( + //3 lists. all file paths and a list for vidio and music ext List allFiles, List musicExtensions, - List videoExtensions) + List videoExtensions, + List photoExtensions) { - int coreCount = Environment.ProcessorCount; + //limit the max paralel tasks and split the total amount of files by the limit set + int coreCount = Environment.ProcessorCount/2; int totalFiles = allFiles.Count; int chunkSize = (int)Math.Ceiling((double)totalFiles / coreCount); - + //concurrent bag instead of lists due to multi tasks var musicBag = new ConcurrentBag(); var videoBag = new ConcurrentBag(); - + var photoBag = new ConcurrentBag(); + //a list of tasks. needed to check if all are done var tasks = new List(); for (int i = 0; i < coreCount; i++) @@ -41,11 +46,15 @@ public class FileClassifier musicBag.Add(file); else if (videoExtensions.Contains(ext)) videoBag.Add(file); + else if (photoExtensions.Contains(ext)) + { + photoBag.Add(file); + } } })); } - + //wait till all tasks are done and return 2 lists await Task.WhenAll(tasks); - return (new List(musicBag), new List(videoBag)); + return (new List(musicBag), new List(videoBag), new List(photoBag)); } } \ No newline at end of file diff --git a/file finder test/FileMangerModules/FileScanner.cs b/file finder test/FileMangerModules/FileScanner.cs index 561f756..ba97414 100644 --- a/file finder test/FileMangerModules/FileScanner.cs +++ b/file finder test/FileMangerModules/FileScanner.cs @@ -7,6 +7,7 @@ using System.Threading.Tasks; public class FileScanner { + //all extensions and cuncurrent bag as a list wich works threw out multiple threads private readonly string[] _extensions; private readonly ConcurrentBag _foundFiles = new ConcurrentBag(); @@ -14,7 +15,7 @@ public class FileScanner { _extensions = extensions.Select(e => e.ToLower()).ToArray(); } - + //return a list of all coneckted drives public async Task> ScanAllDrivesAsync() { var drives = new List(); @@ -31,14 +32,15 @@ public class FileScanner return drives.ToList(); } - + //scan teh designated drive or folder public async Task> ScanDriveParallel(string rootPath) { + //all sub direcktorys will be also added to this bag var folderQueue = new ConcurrentQueue(); folderQueue.Enqueue(rootPath); - + //all aktive skanners are placed here var folderWorkers = new List(); - //add Preformance testing here later + //keep max tasks at half teh amounts of cores int maxWorkers = Environment.ProcessorCount/2; for (int i = 0; i < maxWorkers; i++) @@ -72,8 +74,9 @@ public class FileScanner } })); } - + //wait till all tasks are done Task.WaitAll(folderWorkers.ToArray()); + //return the found paths as string return _foundFiles.ToList(); } } diff --git a/file finder test/Program.cs b/file finder test/Program.cs index 9076997..38b718b 100644 --- a/file finder test/Program.cs +++ b/file finder test/Program.cs @@ -19,9 +19,10 @@ namespace file_finder__test // Step 2: Classify the files var musicExtensions = new List { ".mp3", ".wav" }; var videoExtensions = new List { ".mp4", ".mkv" }; + var photoExtensions = new List { ".jpg", ".img" }; var classifier = new FileClassifier(); - var (musicFiles, videoFiles) = await classifier.ClassifyFilesAsync(allFiles, musicExtensions, videoExtensions); + var (musicFiles, videoFiles,photoFiles) = await classifier.ClassifyFilesAsync(allFiles, musicExtensions, videoExtensions, photoExtensions); Console.Clear(); // Step 3: Use the results (e.g. print) //foreach (var music in musicFiles) Console.WriteLine(music); diff --git a/file finder test/bin/Debug/net8.0/FFMediaToolkit.dll b/file finder test/bin/Debug/net8.0/FFMediaToolkit.dll new file mode 100644 index 0000000..014f8ec Binary files /dev/null and b/file finder test/bin/Debug/net8.0/FFMediaToolkit.dll differ diff --git a/file finder test/bin/Debug/net8.0/FFmpeg.AutoGen.dll b/file finder test/bin/Debug/net8.0/FFmpeg.AutoGen.dll new file mode 100644 index 0000000..283313d Binary files /dev/null and b/file finder test/bin/Debug/net8.0/FFmpeg.AutoGen.dll differ diff --git a/file finder test/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll b/file finder test/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..3ab5850 Binary files /dev/null and b/file finder test/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/file finder test/bin/Debug/net8.0/Newtonsoft.Json.dll b/file finder test/bin/Debug/net8.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/file finder test/bin/Debug/net8.0/Newtonsoft.Json.dll differ diff --git a/file finder test/bin/Debug/net8.0/System.Drawing.Common.dll b/file finder test/bin/Debug/net8.0/System.Drawing.Common.dll new file mode 100644 index 0000000..be6915e Binary files /dev/null and b/file finder test/bin/Debug/net8.0/System.Drawing.Common.dll differ diff --git a/file finder test/bin/Debug/net8.0/file finder test.deps.json b/file finder test/bin/Debug/net8.0/file finder test.deps.json index b33adfe..874db3b 100644 --- a/file finder test/bin/Debug/net8.0/file finder test.deps.json +++ b/file finder test/bin/Debug/net8.0/file finder test.deps.json @@ -7,9 +7,83 @@ "targets": { ".NETCoreApp,Version=v8.0": { "file finder test/1.0.0": { + "dependencies": { + "FFMediaToolkit": "4.6.0", + "FFmpeg.AutoGen": "7.1.1", + "Newtonsoft.Json": "13.0.1", + "System.Drawing.Common": "6.0.0" + }, "runtime": { "file finder test.dll": {} } + }, + "FFMediaToolkit/4.6.0": { + "dependencies": { + "FFmpeg.AutoGen": "7.1.1" + }, + "runtime": { + "lib/netstandard2.1/FFMediaToolkit.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.0.0" + } + } + }, + "FFmpeg.AutoGen/7.1.1": { + "runtime": { + "lib/netstandard2.1/FFmpeg.AutoGen.dll": { + "assemblyVersion": "7.1.1.0", + "fileVersion": "7.1.1.0" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } } } }, @@ -18,6 +92,41 @@ "type": "project", "serviceable": false, "sha512": "" + }, + "FFMediaToolkit/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jbLcrLIEXc5jTOPu5ErsTonW/zO1auUkhWl8BksOsW58MXJRnYs1Qf7skFN8lwvFAKbd93E1+Mg3B1WtAIOHiw==", + "path": "ffmediatoolkit/4.6.0", + "hashPath": "ffmediatoolkit.4.6.0.nupkg.sha512" + }, + "FFmpeg.AutoGen/7.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p4FGdG654zut4Iseg7PeYo7sxFMOTuLTEKl/vX+44UQ6NmezF3wHcR6JzjH8xzK4VDPLJe5Xz563kXamMQj7Jg==", + "path": "ffmpeg.autogen/7.1.1", + "hashPath": "ffmpeg.autogen.7.1.1.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" } } } \ No newline at end of file diff --git a/file finder test/bin/Debug/net8.0/file finder test.dll b/file finder test/bin/Debug/net8.0/file finder test.dll index 0dae7a3..06fc13c 100644 Binary files a/file finder test/bin/Debug/net8.0/file finder test.dll and b/file finder test/bin/Debug/net8.0/file finder test.dll differ diff --git a/file finder test/bin/Debug/net8.0/file finder test.exe b/file finder test/bin/Debug/net8.0/file finder test.exe index 99b532f..5073d4a 100644 Binary files a/file finder test/bin/Debug/net8.0/file finder test.exe and b/file finder test/bin/Debug/net8.0/file finder test.exe differ diff --git a/file finder test/bin/Debug/net8.0/file finder test.pdb b/file finder test/bin/Debug/net8.0/file finder test.pdb index ab03ee5..6e059e2 100644 Binary files a/file finder test/bin/Debug/net8.0/file finder test.pdb and b/file finder test/bin/Debug/net8.0/file finder test.pdb differ diff --git a/file finder test/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/file finder test/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9e26473 Binary files /dev/null and b/file finder test/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll differ diff --git a/file finder test/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/file finder test/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..66af198 Binary files /dev/null and b/file finder test/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/file finder test/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/file finder test/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..7c9e87b Binary files /dev/null and b/file finder test/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll differ diff --git a/file finder test/file finder test.csproj b/file finder test/file finder test.csproj index f6b1ef5..41e26e6 100644 --- a/file finder test/file finder test.csproj +++ b/file finder test/file finder test.csproj @@ -9,7 +9,10 @@ + + + diff --git a/file finder test/obj/Debug/net8.0/apphost.exe b/file finder test/obj/Debug/net8.0/apphost.exe index 99b532f..5073d4a 100644 Binary files a/file finder test/obj/Debug/net8.0/apphost.exe and b/file finder test/obj/Debug/net8.0/apphost.exe differ diff --git a/file finder test/obj/Debug/net8.0/file fin.654EF635.Up2Date b/file finder test/obj/Debug/net8.0/file fin.654EF635.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/file finder test/obj/Debug/net8.0/file finder test.AssemblyInfo.cs b/file finder test/obj/Debug/net8.0/file finder test.AssemblyInfo.cs index 212f2c4..c62069d 100644 --- a/file finder test/obj/Debug/net8.0/file finder test.AssemblyInfo.cs +++ b/file finder test/obj/Debug/net8.0/file finder test.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("file finder test")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ff158be0c0c504655503c6be3f344f309a220247")] [assembly: System.Reflection.AssemblyProductAttribute("file finder test")] [assembly: System.Reflection.AssemblyTitleAttribute("file finder test")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/file finder test/obj/Debug/net8.0/file finder test.AssemblyInfoInputs.cache b/file finder test/obj/Debug/net8.0/file finder test.AssemblyInfoInputs.cache index c3d5077..39557ac 100644 --- a/file finder test/obj/Debug/net8.0/file finder test.AssemblyInfoInputs.cache +++ b/file finder test/obj/Debug/net8.0/file finder test.AssemblyInfoInputs.cache @@ -1 +1 @@ -a8fa7ed7d042e7fb4f5d2918fa385e6ff28ee1e0399b3163d1f0d08015c36a87 +47e5f1d2af8f18fa8a11535b68ad38dbd2947ed97e6bffcefe76fd844e9440b2 diff --git a/file finder test/obj/Debug/net8.0/file finder test.GeneratedMSBuildEditorConfig.editorconfig b/file finder test/obj/Debug/net8.0/file finder test.GeneratedMSBuildEditorConfig.editorconfig index 5d62c43..13b1954 100644 --- a/file finder test/obj/Debug/net8.0/file finder test.GeneratedMSBuildEditorConfig.editorconfig +++ b/file finder test/obj/Debug/net8.0/file finder test.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = file_finder__test -build_property.ProjectDir = C:\Users\Elias\Downloads\VPR_ShadowStream\VPR_ShadowStream\file finder test\ +build_property.ProjectDir = C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/file finder test/obj/Debug/net8.0/file finder test.assets.cache b/file finder test/obj/Debug/net8.0/file finder test.assets.cache index f8ca862..c6b6a02 100644 Binary files a/file finder test/obj/Debug/net8.0/file finder test.assets.cache and b/file finder test/obj/Debug/net8.0/file finder test.assets.cache differ diff --git a/file finder test/obj/Debug/net8.0/file finder test.csproj.AssemblyReference.cache b/file finder test/obj/Debug/net8.0/file finder test.csproj.AssemblyReference.cache index 38030e8..e3d5484 100644 Binary files a/file finder test/obj/Debug/net8.0/file finder test.csproj.AssemblyReference.cache and b/file finder test/obj/Debug/net8.0/file finder test.csproj.AssemblyReference.cache differ diff --git a/file finder test/obj/Debug/net8.0/file finder test.csproj.CoreCompileInputs.cache b/file finder test/obj/Debug/net8.0/file finder test.csproj.CoreCompileInputs.cache index 3f0dce4..54d66e6 100644 --- a/file finder test/obj/Debug/net8.0/file finder test.csproj.CoreCompileInputs.cache +++ b/file finder test/obj/Debug/net8.0/file finder test.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -e71f97072287a58a080261ece6535e6469312148f17d38055a2d675a700c75f1 +f766a329a89a1fe00349eadd0eaff196dbea0e2a06c7754a447684d4f7057d88 diff --git a/file finder test/obj/Debug/net8.0/file finder test.csproj.FileListAbsolute.txt b/file finder test/obj/Debug/net8.0/file finder test.csproj.FileListAbsolute.txt index d555c67..16f3d0c 100644 --- a/file finder test/obj/Debug/net8.0/file finder test.csproj.FileListAbsolute.txt +++ b/file finder test/obj/Debug/net8.0/file finder test.csproj.FileListAbsolute.txt @@ -12,3 +12,28 @@ C:\Users\bib\Desktop\lea\c# code\file finder test\file finder test\obj\Debug\n C:\Users\bib\Desktop\lea\c# code\file finder test\file finder test\obj\Debug\net8.0\file finder test.pdb C:\Users\bib\Desktop\lea\c# code\file finder test\file finder test\obj\Debug\net8.0\file finder test.genruntimeconfig.cache C:\Users\bib\Desktop\lea\c# code\file finder test\file finder test\obj\Debug\net8.0\ref\file finder test.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\file finder test.exe +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\file finder test.deps.json +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\file finder test.runtimeconfig.json +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\file finder test.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\file finder test.pdb +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\Newtonsoft.Json.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\file finder test.csproj.AssemblyReference.cache +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\file finder test.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\file finder test.AssemblyInfoInputs.cache +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\file finder test.AssemblyInfo.cs +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\file finder test.csproj.CoreCompileInputs.cache +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\file finder test.sourcelink.json +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\file fin.654EF635.Up2Date +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\file finder test.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\refint\file finder test.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\file finder test.pdb +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\file finder test.genruntimeconfig.cache +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\obj\Debug\net8.0\ref\file finder test.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\FFMediaToolkit.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\FFmpeg.AutoGen.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\System.Drawing.Common.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Users\bib\Desktop\vpr\mediaverwaltung\file finder test\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll diff --git a/file finder test/obj/Debug/net8.0/file finder test.dll b/file finder test/obj/Debug/net8.0/file finder test.dll index 0dae7a3..06fc13c 100644 Binary files a/file finder test/obj/Debug/net8.0/file finder test.dll and b/file finder test/obj/Debug/net8.0/file finder test.dll differ diff --git a/file finder test/obj/Debug/net8.0/file finder test.genruntimeconfig.cache b/file finder test/obj/Debug/net8.0/file finder test.genruntimeconfig.cache index 7cdfa65..3f67085 100644 --- a/file finder test/obj/Debug/net8.0/file finder test.genruntimeconfig.cache +++ b/file finder test/obj/Debug/net8.0/file finder test.genruntimeconfig.cache @@ -1 +1 @@ -6115aa85531941d9ae58608c9a9d5580805abc134e78bf45e30ba2c148dd972c +ef99bd1acfd2190df72ec448ba2512817329f09b64d4b0d0eab6601066d8e487 diff --git a/file finder test/obj/Debug/net8.0/file finder test.pdb b/file finder test/obj/Debug/net8.0/file finder test.pdb index ab03ee5..6e059e2 100644 Binary files a/file finder test/obj/Debug/net8.0/file finder test.pdb and b/file finder test/obj/Debug/net8.0/file finder test.pdb differ diff --git a/file finder test/obj/Debug/net8.0/file finder test.sourcelink.json b/file finder test/obj/Debug/net8.0/file finder test.sourcelink.json new file mode 100644 index 0000000..e1b1d83 --- /dev/null +++ b/file finder test/obj/Debug/net8.0/file finder test.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\*":"https://gitlab.com/NotMoReda1/mediaverwaltung/-/raw/ff158be0c0c504655503c6be3f344f309a220247/*"}} \ No newline at end of file diff --git a/file finder test/obj/Debug/net8.0/ref/file finder test.dll b/file finder test/obj/Debug/net8.0/ref/file finder test.dll index d011e0f..55c52b7 100644 Binary files a/file finder test/obj/Debug/net8.0/ref/file finder test.dll and b/file finder test/obj/Debug/net8.0/ref/file finder test.dll differ diff --git a/file finder test/obj/Debug/net8.0/refint/file finder test.dll b/file finder test/obj/Debug/net8.0/refint/file finder test.dll index d011e0f..55c52b7 100644 Binary files a/file finder test/obj/Debug/net8.0/refint/file finder test.dll and b/file finder test/obj/Debug/net8.0/refint/file finder test.dll differ diff --git a/file finder test/obj/file finder test.csproj.nuget.dgspec.json b/file finder test/obj/file finder test.csproj.nuget.dgspec.json index 10b8a42..eced19e 100644 --- a/file finder test/obj/file finder test.csproj.nuget.dgspec.json +++ b/file finder test/obj/file finder test.csproj.nuget.dgspec.json @@ -1,23 +1,23 @@ { "format": 1, "restore": { - "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj": {} + "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": {} }, "projects": { - "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj": { + "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj", + "projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", "projectName": "file finder test", - "projectPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj", - "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\obj\\", + "projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", + "packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", + "outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\Elias\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -49,9 +49,21 @@ "net8.0": { "targetAlias": "net8.0", "dependencies": { + "FFMediaToolkit": { + "target": "Package", + "version": "[4.6.0, )" + }, + "FFmpeg.AutoGen": { + "target": "Package", + "version": "[7.1.1, )" + }, "Newtonsoft.Json": { "target": "Package", "version": "[13.0.1, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[6.0.0, )" } }, "imports": [ @@ -70,7 +82,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" } } } diff --git a/file finder test/obj/file finder test.csproj.nuget.g.props b/file finder test/obj/file finder test.csproj.nuget.g.props index c29df0e..bda40b9 100644 --- a/file finder test/obj/file finder test.csproj.nuget.g.props +++ b/file finder test/obj/file finder test.csproj.nuget.g.props @@ -5,12 +5,12 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Elias\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\bib\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference 6.12.2 - + \ No newline at end of file diff --git a/file finder test/obj/project.assets.json b/file finder test/obj/project.assets.json index 72cf1d5..0845f74 100644 --- a/file finder test/obj/project.assets.json +++ b/file finder test/obj/project.assets.json @@ -2,6 +2,57 @@ "version": 3, "targets": { "net8.0": { + "FFMediaToolkit/4.6.0": { + "type": "package", + "dependencies": { + "FFmpeg.AutoGen": "7.1.1" + }, + "compile": { + "lib/netstandard2.1/FFMediaToolkit.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/FFMediaToolkit.dll": { + "related": ".pdb;.xml" + } + } + }, + "FFmpeg.AutoGen/7.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.1/FFmpeg.AutoGen.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FFmpeg.AutoGen.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "Newtonsoft.Json/13.0.1": { "type": "package", "compile": { @@ -14,10 +65,102 @@ "related": ".xml" } } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } } } }, "libraries": { + "FFMediaToolkit/4.6.0": { + "sha512": "jbLcrLIEXc5jTOPu5ErsTonW/zO1auUkhWl8BksOsW58MXJRnYs1Qf7skFN8lwvFAKbd93E1+Mg3B1WtAIOHiw==", + "type": "package", + "path": "ffmediatoolkit/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ffmediatoolkit.4.6.0.nupkg.sha512", + "ffmediatoolkit.nuspec", + "lib/netstandard2.0/FFMediaToolkit.dll", + "lib/netstandard2.0/FFMediaToolkit.pdb", + "lib/netstandard2.0/FFMediaToolkit.xml", + "lib/netstandard2.1/FFMediaToolkit.dll", + "lib/netstandard2.1/FFMediaToolkit.pdb", + "lib/netstandard2.1/FFMediaToolkit.xml" + ] + }, + "FFmpeg.AutoGen/7.1.1": { + "sha512": "p4FGdG654zut4Iseg7PeYo7sxFMOTuLTEKl/vX+44UQ6NmezF3wHcR6JzjH8xzK4VDPLJe5Xz563kXamMQj7Jg==", + "type": "package", + "path": "ffmpeg.autogen/7.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "README.md", + "ffmpeg.autogen.7.1.1.nupkg.sha512", + "ffmpeg.autogen.nuspec", + "lib/netstandard2.0/FFmpeg.AutoGen.dll", + "lib/netstandard2.0/FFmpeg.AutoGen.xml", + "lib/netstandard2.1/FFmpeg.AutoGen.dll", + "lib/netstandard2.1/FFmpeg.AutoGen.xml" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, "Newtonsoft.Json/13.0.1": { "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", "type": "package", @@ -44,31 +187,73 @@ "newtonsoft.json.nuspec", "packageIcon.png" ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] } }, "projectFileDependencyGroups": { "net8.0": [ - "Newtonsoft.Json >= 13.0.1" + "FFMediaToolkit >= 4.6.0", + "FFmpeg.AutoGen >= 7.1.1", + "Newtonsoft.Json >= 13.0.1", + "System.Drawing.Common >= 6.0.0" ] }, "packageFolders": { - "C:\\Users\\Elias\\.nuget\\packages\\": {}, + "C:\\Users\\bib\\.nuget\\packages\\": {}, "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj", + "projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", "projectName": "file finder test", - "projectPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj", - "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\obj\\", + "projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", + "packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", + "outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" ], "configFilePaths": [ - "C:\\Users\\Elias\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], @@ -100,9 +285,21 @@ "net8.0": { "targetAlias": "net8.0", "dependencies": { + "FFMediaToolkit": { + "target": "Package", + "version": "[4.6.0, )" + }, + "FFmpeg.AutoGen": { + "target": "Package", + "version": "[7.1.1, )" + }, "Newtonsoft.Json": { "target": "Package", "version": "[13.0.1, )" + }, + "System.Drawing.Common": { + "target": "Package", + "version": "[6.0.0, )" } }, "imports": [ @@ -121,7 +318,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" } } } diff --git a/file finder test/obj/project.nuget.cache b/file finder test/obj/project.nuget.cache index 9ffc973..ba83a06 100644 --- a/file finder test/obj/project.nuget.cache +++ b/file finder test/obj/project.nuget.cache @@ -1,10 +1,14 @@ { "version": 2, - "dgSpecHash": "prz0X75KDMs=", + "dgSpecHash": "jBSb1NTebpU=", "success": true, - "projectFilePath": "C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj", + "projectFilePath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", "expectedPackageFiles": [ - "C:\\Users\\Elias\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512" + "C:\\Users\\bib\\.nuget\\packages\\ffmediatoolkit\\4.6.0\\ffmediatoolkit.4.6.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\ffmpeg.autogen\\7.1.1\\ffmpeg.autogen.7.1.1.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\bib\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file diff --git a/file finder test/obj/project.packagespec.json b/file finder test/obj/project.packagespec.json index 133d993..18c9f0e 100644 --- a/file finder test/obj/project.packagespec.json +++ b/file finder test/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj","projectName":"file finder test","projectPath":"C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\file finder test.csproj","outputPath":"C:\\Users\\Elias\\Downloads\\VPR_ShadowStream\\VPR_ShadowStream\\file finder test\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Newtonsoft.Json":{"target":"Package","version":"[13.0.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file +"restore":{"projectUniqueName":"C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj","projectName":"file finder test","projectPath":"C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj","outputPath":"C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"FFMediaToolkit":{"target":"Package","version":"[4.6.0, )"},"FFmpeg.AutoGen":{"target":"Package","version":"[7.1.1, )"},"Newtonsoft.Json":{"target":"Package","version":"[13.0.1, )"},"System.Drawing.Common":{"target":"Package","version":"[6.0.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/file finder test/obj/rider.project.model.nuget.info b/file finder test/obj/rider.project.model.nuget.info index 4b42b67..fd2c08d 100644 --- a/file finder test/obj/rider.project.model.nuget.info +++ b/file finder test/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17480215477067295 \ No newline at end of file +17492032581560652 \ No newline at end of file diff --git a/file finder test/obj/rider.project.restore.info b/file finder test/obj/rider.project.restore.info index 4b42b67..18823ce 100644 --- a/file finder test/obj/rider.project.restore.info +++ b/file finder test/obj/rider.project.restore.info @@ -1 +1 @@ -17480215477067295 \ No newline at end of file +17492036620356235 \ No newline at end of file