From 7e2c8d971d315efd56d63e730484370c8ecb8cc9 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 9 Jun 2025 19:01:41 +0200 Subject: [PATCH] before restrucktur --- ShadowStream/MainWindow.xaml.cs | 143 ++- ShadowStream/Modules/JasonToString.cs | 26 + .../{ => Modules}/Obejeckte/Catagory.cs | 0 ShadowStream/{ => Modules}/Obejeckte/Item.cs | 11 + .../Modules/ObjecktForJason/DBJason.cs | 10 + .../Modules/ObjecktForJason/Jason Writer.cs | 46 + .../Modules/ObjecktForJason/locJason.cs | 8 + ShadowStream/ShadowStream.csproj | 1 + .../ShadowStream.AssemblyInfo.cs | 2 +- .../ShadowStream.AssemblyInfoInputs.cache | 2 +- ....GeneratedMSBuildEditorConfig.editorconfig | 2 +- .../net8.0-windows/ShadowStream.assets.cache | Bin 25840 -> 26566 bytes ...hadowStream.csproj.AssemblyReference.cache | Bin 3020 -> 2815 bytes .../net8.0-windows/ShadowStream_Content.g.cs | 855 ------------------ .../ShadowStream_MarkupCompile.cache | 20 - .../ShadowStream_MarkupCompile.lref | 6 - .../obj/ShadowStream.csproj.nuget.dgspec.json | 42 +- .../obj/ShadowStream.csproj.nuget.g.props | 4 +- ShadowStream/obj/project.assets.json | 56 +- ShadowStream/obj/project.nuget.cache | 123 +-- ShadowStream/obj/project.packagespec.json | 2 +- .../obj/rider.project.model.nuget.info | 2 +- ShadowStream/obj/rider.project.restore.info | 2 +- file finder test/file finder test.csproj | 1 + .../net8.0/file finder test.AssemblyInfo.cs | 2 +- ...file finder test.AssemblyInfoInputs.cache | 2 +- ....GeneratedMSBuildEditorConfig.editorconfig | 2 +- .../net8.0/file finder test.assets.cache | Bin 4388 -> 4984 bytes ...inder test.csproj.AssemblyReference.cache | Bin 2091 -> 2530 bytes ...file finder test.csproj.nuget.dgspec.json | 20 +- .../file finder test.csproj.nuget.g.props | 4 +- file finder test/obj/project.assets.json | 51 +- file finder test/obj/project.nuget.cache | 15 +- .../obj/project.packagespec.json | 2 +- .../obj/rider.project.model.nuget.info | 2 +- .../obj/rider.project.restore.info | 2 +- 36 files changed, 450 insertions(+), 1016 deletions(-) create mode 100644 ShadowStream/Modules/JasonToString.cs rename ShadowStream/{ => Modules}/Obejeckte/Catagory.cs (100%) rename ShadowStream/{ => Modules}/Obejeckte/Item.cs (90%) create mode 100644 ShadowStream/Modules/ObjecktForJason/DBJason.cs create mode 100644 ShadowStream/Modules/ObjecktForJason/Jason Writer.cs create mode 100644 ShadowStream/Modules/ObjecktForJason/locJason.cs delete mode 100644 ShadowStream/obj/Debug/net8.0-windows/ShadowStream_Content.g.cs delete mode 100644 ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.cache delete mode 100644 ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.lref diff --git a/ShadowStream/MainWindow.xaml.cs b/ShadowStream/MainWindow.xaml.cs index a400a67..e206edd 100644 --- a/ShadowStream/MainWindow.xaml.cs +++ b/ShadowStream/MainWindow.xaml.cs @@ -13,7 +13,13 @@ using file_finder__test; using ShadowStream; using ShadowStream.LogHelper; using ShadowStream.Obejeckte; +using System.IO; using System.Threading; +using ShadowStream.ObjecktForJason; +using TagLib; +using ShadowStream.Modules; +using ShadowStream.ObjecktForJason; + namespace ModuleManager; @@ -76,11 +82,6 @@ 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 @@ -146,6 +147,61 @@ public partial class MainWindow : Window //causes delibrit null refrence exeption. so dont use it!!! :-P videoFiles = null; //music list,muvie list,photo list,music list + //add to catagory + List muviesJS = new List(); + List seriesJS = new List(); + List photosJS = new List(); + List mucicJS = new List(); + + JasonToString jasonToString = new JasonToString(); + + foreach (var VARIABLE in ItemCreater(movies, "Muvie",false)) + { + Muvie.addItem(VARIABLE); + + muviesJS.Add(new locJason()); + muviesJS[muviesJS.Count - 1].path = VARIABLE.getLink(); + muviesJS[muviesJS.Count - 1].imageData = jasonToString.BitmapToBase64String(BitmapImageToBitmap(VARIABLE.getImage())); + muviesJS[muviesJS.Count - 1].type = VARIABLE.getType(); + } + foreach (var VARIABLE in ItemCreater(series, "Serie",false)) + { + Serie.addItem(VARIABLE); + + seriesJS[muviesJS.Count - 1].path = VARIABLE.getLink(); + seriesJS[muviesJS.Count - 1].imageData = jasonToString.BitmapToBase64String(BitmapImageToBitmap(VARIABLE.getImage())); + seriesJS[muviesJS.Count - 1].type = VARIABLE.getType(); + } + foreach (var VARIABLE in ItemCreater(photoFiles, "Photo",true)) + { + Photo.addItem(VARIABLE); + + photosJS[muviesJS.Count - 1].path = VARIABLE.getLink(); + photosJS[muviesJS.Count - 1].imageData = jasonToString.BitmapToBase64String(BitmapImageToBitmap(VARIABLE.getImage())); + photosJS[muviesJS.Count - 1].type = VARIABLE.getType(); + } + foreach (var VARIABLE in ItemCreater(musicFiles, "Msuic",false,true)) + { + Music.addItem(VARIABLE); + + mucicJS[muviesJS.Count - 1].path = VARIABLE.getLink(); + mucicJS[muviesJS.Count - 1].imageData = jasonToString.BitmapToBase64String(BitmapImageToBitmap(VARIABLE.getImage())); + mucicJS[muviesJS.Count - 1].type = VARIABLE.getType(); + } + + + //locJson + Jason_Writer jason_Writer = new Jason_Writer(); + List tasks = new List(); + tasks.Add(jason_Writer.SaveList("Muvies", muviesJS)); + tasks.Add(jason_Writer.SaveList("Series", seriesJS)); + tasks.Add(jason_Writer.SaveList("Photos", photosJS)); + tasks.Add(jason_Writer.SaveList("Music", mucicJS)); + + Task.WhenAll(tasks).Wait(); + + //next up the db json + @@ -157,13 +213,84 @@ public partial class MainWindow : Window foreach (var VARIABLE in path) { - Bitmap frame200 = VideoFrameExtractor.GetFrame200(VARIABLE); - items.Add(new Item(VARIABLE, type,frame200, isFoto)); + Bitmap frame200; + if(!isFoto) + frame200 = VideoFrameExtractor.GetFrame200(VARIABLE); + else + { + frame200 = new Bitmap(VARIABLE); + } + items.Add(new Item(VARIABLE, type,ConvertBitmapToBitmapImage(frame200), isFoto)); } return items; } - + List ItemCreater(List paths, string type, bool isFoto, bool Music) + { + List items = new List(); + Bitmap defaultImage = new Bitmap("default music picture.png"); + + foreach (var filePath in paths) + { + Bitmap bitmap = defaultImage; + + try + { + var file = TagLib.File.Create(filePath); + if (file.Tag.Pictures.Length > 0) + { + var pic = file.Tag.Pictures[0]; + // MemoryStream lets you work with data stored in memory like a file or stream. + using (var ms = new MemoryStream(pic.Data.Data)) + { + bitmap = new Bitmap(ms); + } + } + } + catch + { + // If anything fails, keep default image + } + + items.Add(new Item(filePath, type, ConvertBitmapToBitmapImage(bitmap), isFoto)); + } + + return items; + } + + public static BitmapImage ConvertBitmapToBitmapImage(System.Drawing.Bitmap bitmap) + { + using (var memory = new System.IO.MemoryStream()) + { + bitmap.Save(memory, System.Drawing.Imaging.ImageFormat.Png); + memory.Position = 0; + + var bitmapImage = new BitmapImage(); + bitmapImage.BeginInit(); + bitmapImage.StreamSource = memory; + bitmapImage.CacheOption = BitmapCacheOption.OnLoad; + bitmapImage.EndInit(); + bitmapImage.Freeze(); // Optional: for thread safety + + return bitmapImage; + } + } + public static Bitmap BitmapImageToBitmap(BitmapImage bitmapImage) + { + using (MemoryStream ms = new MemoryStream()) + { + // Encode BitmapImage to stream (e.g., PNG) + BitmapEncoder encoder = new PngBitmapEncoder(); + encoder.Frames.Add(BitmapFrame.Create(bitmapImage)); + encoder.Save(ms); + + ms.Seek(0, SeekOrigin.Begin); // Reset stream position + + // Create Bitmap from stream + return new Bitmap(ms); + } + } + //scan logic diff --git a/ShadowStream/Modules/JasonToString.cs b/ShadowStream/Modules/JasonToString.cs new file mode 100644 index 0000000..af546f2 --- /dev/null +++ b/ShadowStream/Modules/JasonToString.cs @@ -0,0 +1,26 @@ +using System.Drawing; +using System.IO; + +namespace ShadowStream.Modules; + + +public class JasonToString +{ + public Bitmap Base64StringToBitmap(string base64String) + { + byte[] imageBytes = Convert.FromBase64String(base64String); + using (MemoryStream ms = new MemoryStream(imageBytes)) + { + return new Bitmap(ms); + } + } + public string BitmapToBase64String(Bitmap bitmap) + { + using (MemoryStream ms = new MemoryStream()) + { + bitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Png); // Save as PNG to MemoryStream + byte[] imageBytes = ms.ToArray(); + return Convert.ToBase64String(imageBytes); + } + } +} \ No newline at end of file diff --git a/ShadowStream/Obejeckte/Catagory.cs b/ShadowStream/Modules/Obejeckte/Catagory.cs similarity index 100% rename from ShadowStream/Obejeckte/Catagory.cs rename to ShadowStream/Modules/Obejeckte/Catagory.cs diff --git a/ShadowStream/Obejeckte/Item.cs b/ShadowStream/Modules/Obejeckte/Item.cs similarity index 90% rename from ShadowStream/Obejeckte/Item.cs rename to ShadowStream/Modules/Obejeckte/Item.cs index 7cb6780..3463cb7 100644 --- a/ShadowStream/Obejeckte/Item.cs +++ b/ShadowStream/Modules/Obejeckte/Item.cs @@ -52,4 +52,15 @@ public class Item { return name.Content.ToString(); } + + public BitmapImage getImage() + { + return image; + } + + public string getType() + { + return type; + } + } \ No newline at end of file diff --git a/ShadowStream/Modules/ObjecktForJason/DBJason.cs b/ShadowStream/Modules/ObjecktForJason/DBJason.cs new file mode 100644 index 0000000..017f1e6 --- /dev/null +++ b/ShadowStream/Modules/ObjecktForJason/DBJason.cs @@ -0,0 +1,10 @@ +namespace ShadowStream.ObjecktForJason; + +public class DBJason +{ + public string name; + public string path; + public string type; + public string format; + public double duration; +} \ No newline at end of file diff --git a/ShadowStream/Modules/ObjecktForJason/Jason Writer.cs b/ShadowStream/Modules/ObjecktForJason/Jason Writer.cs new file mode 100644 index 0000000..2d43715 --- /dev/null +++ b/ShadowStream/Modules/ObjecktForJason/Jason Writer.cs @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.IO; +using Newtonsoft.Json; + +namespace ShadowStream.ObjecktForJason; + +public class Jason_Writer +{ + private readonly string _folderPath; + + public Jason_Writer(string folderName = "Temp Data") + { + _folderPath = Path.Combine(Environment.CurrentDirectory, folderName); + + if (!Directory.Exists(_folderPath)) + Directory.CreateDirectory(_folderPath); + } + + // Save one list of locJason objects to JSON file with given name + public async Task SaveList(string listName, List list) + { + string filePath = Path.Combine(_folderPath, $"{listName}.json"); + string jsonString = JsonConvert.SerializeObject(list, Formatting.Indented); + File.WriteAllText(filePath, jsonString); + } + + // Load one list of locJason objects from JSON file with given name + public List LoadList(string listName) + { + string filePath = Path.Combine(_folderPath, $"{listName}.json"); + + if (!File.Exists(filePath)) + return new List(); // Return empty list if file doesn't exist + + string jsonString = File.ReadAllText(filePath); + return JsonConvert.DeserializeObject>(jsonString) ?? new List(); + } + + // Check if list file exists + public bool ListExists(string listName) + { + string filePath = Path.Combine(_folderPath, $"{listName}.json"); + return File.Exists(filePath); + } +} diff --git a/ShadowStream/Modules/ObjecktForJason/locJason.cs b/ShadowStream/Modules/ObjecktForJason/locJason.cs new file mode 100644 index 0000000..f95c2a9 --- /dev/null +++ b/ShadowStream/Modules/ObjecktForJason/locJason.cs @@ -0,0 +1,8 @@ +namespace ShadowStream.ObjecktForJason; + +public class locJason +{ + public string path; + public string imageData; + public string type; +} \ No newline at end of file diff --git a/ShadowStream/ShadowStream.csproj b/ShadowStream/ShadowStream.csproj index 2401c01..c3f525f 100644 --- a/ShadowStream/ShadowStream.csproj +++ b/ShadowStream/ShadowStream.csproj @@ -21,6 +21,7 @@ + diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfo.cs b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfo.cs index 983b53e..55dcf01 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+ff158be0c0c504655503c6be3f344f309a220247")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+467d6af393d3c6b2cea96536bb5e2eb38a37240b")] [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 17b9148..a684e83 100644 --- a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfoInputs.cache +++ b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.AssemblyInfoInputs.cache @@ -1 +1 @@ -a1323e4f389a69acf1cfa0e8fb8e33c9b2ef05e0c4f052e77d0f3ff6537023f5 +9718aa8ac3cb83320e481966c2b1f472a9f144a777abb32f94e3f2aeaca84341 diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.GeneratedMSBuildEditorConfig.editorconfig b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream.GeneratedMSBuildEditorConfig.editorconfig index d5f6c9e..d285b85 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\bib\Desktop\vpr\mediaverwaltung\ShadowStream\ +build_property.ProjectDir = C:\Users\Elias\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 580a7fb90abfbc5e97df41bc179c0cbbb5282e6f..f25acd72b424bb6401e6f8e30e380fd7d41f2925 100644 GIT binary patch literal 26566 zcmd5^XLQ`g5td`oj;k!mvMm>xF0|t~!m){#oy3Vks?ee+Mx^DGO9Agd5*F@o0dNxO z^y2j1oZfryz4zYh|K#OI{^ce4of%+fF#vV}+~MdKy|+4Iu{-74Hak0ug`>p8#$xthb3P>Ga{;8Mmgi%f>8vDq0ls_B*zKl!#=kAa_MU}9oHaH#XMGVow+dLd?1tz1 z?n+<)kBM=^-|z#gWu3O#fnNvKapPh;ACsl;2}>`Ar4NRsxg-}0Nw&c+f^Z3>dVwTu z>rCLbLs9Pa-FAI!0=O$0d9*$sm%Ix~a>m;Q;~j$WPWXLV0pmzzqv@Fd!K%@4TPn@A1}w-c3~iazID%9;R9*R*jE>PXODAUmkC~%!!H7S z1*9jJ;|1f?SPOzq$Z;~uae_F`L%}0Zkn`Ow_+BaaUIo9a<@t6zyJZLVX_!Ye`X;z9 z$l_dvtAz}t`!(=fG=GRT_PXuBZdoDov8?J6>=RKr&UKIAdM*4S;=_>aa+(XS#v06y zP6^eC`;n+Tm*P6$ihYc9zaIX6#aZRV@U2GIvx5zz;cawa9`(%5+J<2|t1jfOwX{t# zMIB<12uyPV2P6S5=nW}BZ-nQUR1(x`H{2!+(88Xh7W1H}&V?LF33*dxG<)daYBAMa z{^pdR4}<3iDxtZ)Z}j$tg6R;T35(QrM>>~zo;5wmnC%897j!MGZS zWv>v5CK3alOHL%g8t}t0U<9UrN;_cX9J(aSFJXBuMJ)x*C_FC~Kogj&U=c;;(0I69 zWh}7K`jWW{mQltm8Wa4+;TNaR2}t-4C$pl-yHAs|(_BXC_>Y^M1J{!A;aU>k;e^qI zX55VBp9Efi>jISVz+q9T<0kb{vc^i8sidV&K=MOGTLr*mp z95YyPy_S!4c4yx&nI4$>;oGa@w^>UsWSKI;Fz*O0bWLm7HrvMjz3Wqx24%KQT=)$! zP}H;E@s8DA^c^HNOZ8T)rt6u;_{2b|O;(|{i)2gagi`NOzA?y@!XjhpB5FXOi#Qh6 zn&_n#gYg*Ea{*ev>stoc)#Fu^&r+O({azJ{hoy}Ex-kYu|7g$DBu=v1xP8-N=p7=- zyfw=)ZtGbrMrw{ob(g`o>>6W}#%QHZm>~!|mO&Hjqa~QiJH%L@b{)rR1h{@;SH32j zZA`muFit(#bz+GtM2Q*OTy494U^jeY##-*K;>#OUFJ-|+x9c^+5p$)Y+>&QDVEIHc zyXbXdKZkEF6>knZ?y~9F_rbj7w(-Rt)eB?VbS(6Ggt}d;EOKx?fWb%lpC`)99_QR( ze|N}stmqxSAX14JMrUL$K|Qo^WB!^L2tt9H;Z?giC6Awuq^4OE;}9dsDeU%2Puu@ zawQ`cOWv4Uk`1$bMUqXvH9BF;o#idu=x5h?E%$Bs~Bse?XRkR0P^=}ni?P(HO9w?)Z+xHX$`3v$Va39+JdbN6xnhZ$}D*3 z2WbuC)awtAjPGCHKQ%Ibd+g{OK56@1(-~e2x=rxX;l9Rd*5|v2tzbd8#E}*Pvq{^S z^_HXB#+2aJkH?&G;~w*YdCD1m?kV3)4>@DWJ>(CfXPimEJ>#3_5oZi>3c&t@Q^2Nr z!WmEQ2_L8jobk9!=!Krp2gL);cykYQ(Kz(OBNEyLC;dlsUdG(~WXv#b-1A)0QAB%< zem%~NJNG#Me>iZNa3ib}{D1mGnXud+`XKm08E5VXE!l&rx*8dG?rMbg+JZAu(WvRu zr}jFy9RxFwpp002$Ekpp(kS zYh*nE`7bPalm+o5(jUbB4&4ofA}5?ll2GI?;({-x1Ygn!emCTAszJrT}{bTY}ILKYqQp16EZNy+zAjeJjo{QFA|5}!`#6UY26 zy8nGgC#^(K?coyMCNBEZQ=*$1(U&2=T7*ImeN!!c>;mHo+?-ONp;4d-`5Wc>Mt}#= z+C$^aY$`$5xX`$?=~H7%Bkc<0Kc%F!bULi-6tWA)t~xd+p%=rfp{^b-ht2^)K>z6h*ksQC7=)o;-&Dc0^((m zk3hT}5(4oGNM9@6Bl2PbazTJ7FDD8cg&5uFywR^GLJWFQKa5r|nj2sd(46>6&;#|S z?b55@Z=?8!`&1x{b z71ZH9;BD}%>H%+ueCz@5fP^r-6H?DG=;CFnz(6#s!SF6nhr{r0cvivi9>_-+-U|s~ zcps!bU{FW-RD&U+Sq+BwgE}0B55Thuh7UqM!tfzT2*Zc*xxmU7+9@x6$O*pNw%56R zzZf}7k|*W3OQTsl?Wg$&NP-d{g2XM`kD`Q-J_ZRT{x~FO5E7?0Bs~lK2@pgj@FyW3 z1?D@Emle%B0^?O4M`gekS;Rt#ZKo3L_+(6OLKERwEJ}#u|0xg=dkn3jpN79x>U;+B zQJv31BK%)EV0Bni3`m>LX|(yg(B=z58{8(AJmzVqE(4Ki!+U-#y>wVmd>O}nH*iJl zuY`oVx-UXfVgDt_N9?~0iLhTQ*Y|bO=0jaZ*so}W{i+a_L;IGJ9Ywvn&fd2n%)ywV z$wmRWdXJsFd_&XF4Inii24B-?_jRG&H{chW;+v4(x=Gp<^r$N8eG9}^^|Wt8e!8b^ zR^utVpd2q%wEK=myYC9^z6Zb9csS~-Ia(X>5Kc%!|cl4g8sUpTS~rgYlbvpvDnL15lwztt%AJE0i2 zi#}LMG2I={{9ak0VLC>f_s&~Vs{UT1>K_!Ueqd8oRrb;WYWhcwrhgKe@-^Tr$lGfe zbv%9_UV(^q%NrhsE4V>6$7uK+&%GDB5B~czB>ej?_yGU@3h81Vi#*#*T_D`a-=2i8 zdcY-=p)gGTq6ITpn{A6A<`Hm3*1)_b!xL_F)sn&W*v_e|h(lqxyt*n6tH-MR%HmKM zD1W733E$GF%_YC3k-pD(izo`-74|8NL@n_tjNE&RLr~usy)`CQ%e&=>Qg2Iz*Pj!G z*WV;a#AuDyQYEoA-MmTq3vOimwfpnxgjyiK|@Lv@M}QQJy!Rb*4{`p%;=Or+>)CVWB6*Ca+gt4RTqxGHMW+fAUEj7F3B zu&I^_qt4hFI5r+;}@5P!n-fm zE2ao`K?W;roi|(7xnfe@IqT21I*#4217~B#f@Q&K4jnQb-+CxsqjOGM&8BH z_C$fZL=`<-qE05pb+mvF=$QOI(q#Dx@rRD~6;x`+pZj4S2D+o5mT*3*9K1zpWuj4Z z_t4IXE+;*@K$O#Xi_L)x@eyA5r6s(@2A_Gtt4-$}@O>*-+UQv4deP*0-n84#oUShfP`?vL$H==24AwlTh`p)NR&BX81|b)$1nP zZaqxsR9NuN3=^r8x^8mayfv3kvh2PLE2&S;igdl;kW(acvG(Q+C#h7tTtOd|OEAU$ zVaMH;TA22WdC0H9OjQ$J^O5|n$QAWw-4s|j2 zNF5{~A*n$DQX$wb3rK>P1SHJOe$}PQcVZT(Yt};N8V|zj4;V?Xo*_sLoZDEL@pwH+ zs3*8R!zv3B1;6z(l%!5ENJMU6AQ8cVfs`f~gG6rz^)(*?+pi^}%zA-_#o0+}1Bu#; zhgL#1LiwUZuAFNUx&8E*f_T4+YE(1|Om} zD131B>YmhTR7xgwnA|`;K z0}1AG(GkFnpCppdlMx|^@`$ijWZ{yW$h4G|?I&3Q+Dhedku*4hj7Awrhe-|{jY%q? z0afna`QeGIqybT$GV)4ApiR~3gO7<$#uO&dI8|9kr=aL=ypG(FqD?^qD&`|qR_}9@ zrz4UU+7lIH+2Y31&^jCPX}a`_8mx@;l2}ngmLVpg;69Yfu)_Em7_1sv1z)jiuO2Kr zNYpTiU@A$aKd=QAIf3->8jFSr(qL?Y)L8_*a||5MBrBe zY~@6eMAWdAljN>~&Qu@@KR1=6`h$j(lG_G#x9UMCNvSW8)G~3)r}T_Mdm>o%W0|-? z#3<2Ps_u!5(usoBD_A^KXT*}ErWFfDql)C?rIbqZqYoh^MRlw8A>;N;FwoE#2CMuJ DU|uJv delta 4725 zcmai%Yfw~W7{^`i3m%hP*aa3=*;8xaf$r!!OdqV#4}IuEQ~y^FaW3!4o%zq%^M9Y`$Me4Dect7K zd&}_XnqiiwtT=!CxN+mkBk5uN^!ma3>0x2w@kdE}CU^O5AJ|~HZK_?Jz2oQp-h2c} zpGmkbC=_ewcQ$o&);6{@QjfW0?{1r*Hcd3g=A;0FRVY=2*I7hbWv~gg3ipzwoPLA5 zLgA)_)l!F-O{iA5hrN~ybqdGeW1*eVE?Vww70NXur^4gtj<-!%s2XVznpBRJ%n>5p z@=?!*@pnh0&@5k@(5%W~BmU%LbH9%%P*Mzs5d?d3yPmWSN*LM_Ni$@!eYgrW%cG7eQ6}pNq+^{gteT}R?bXv zqw>fUXbWM_+Q56z1DQc5bW-cTBp4rM@@kQ2&+ zOhrYj+MAl~`D?n`ikn)Kopy)a;fnzV@Pin@AL0RA@PlW!G*- z*|99$2(k1)h?g$Xk&wuhERyZ||BKAVcxXk_x~{g?&bFmpc6Vo6YqBHFo-$Tzu!MLX zSKc3+0Y8E&y+bHBH1J7zCMn}Nos1kh5gO-W<;|2Lb9Ex~;Cn%lisvern>1b6pmA7V zrjyfR*7RkirYDzZ`ms~fi)Hk8n3>y;nY23G%tvxmSbfQZUtvyY%rtsNrM5|BP3c4}H%B{N$(Q6cYkF8ex)P>?~ zjIf<)hJ2uMh__A^@OzZU7(?8h+T@ypAvwaMgQ$eh`x%(eEqN}Y*K10i98*WGXcISM zJ~Apb8Mk9HTvZs6SGWN8yh*+UzePh}o3|mhNL;9*RO?V`;BQhc)q~h>u~wB{r;}a} zpYy9U64#vApp)`4{B@eTbB$5d8(*HdNGGcievLLO%1B8GnK_FwDqpiDI+P~(QP3+2 zQc74l)h2qxr8-&7@Rva?&~j)6bXK`$hO{s;ywLAni6K_VDv0gSR){^kHb~yd?YL*i z)eu8=K<72c-lPF{Cr0GNF5L5oYv42DT8I(XK|Epr*@O^^n$}GNNdX0;b*@J=kNPTn zMtu!p)YqXanmQ@SZls{;2WfEH81fB-@{rx|8FB-}kUbC=dEC7bL-M(A!aWc9CVYn6 z3^C*u=$y7nQ}RLgRtz!Z=n=9F-+9RG@ELLk#E@@67dgn3Lv$*6Y|^_B#>2f0UyU2q z;w+9n_ilvBC%s1pxmQB=;>s!{=&~9)g(6b>>7-+h|%6S;mWFEi^};a^vRioYBK14 zqyO9hgs{(-kbE0l#yzjnui&dI-KL$ePfnFvjl80R{8~ajqw1lVtm;tOuq2K)&ah_k zs=F$ou`?(uztXM#Kk0@J@&^ei-*d;5$jAOg6j9J3-qbrV6PF=aMB(NK-h6z2b!|h4b|IH5trwI@E0PW3R@kj%<0z@T+BKd<j{$Es#jgfNOe5Czec_tj{jMABn19 z^J?Z*jOc=slUP6Td!s6xoXB>MKMq4oW^xAm-O2XsT&!UGHV1KRVC0WSRkoR*YcFFx zV=$^{j9y-8dTL2bL1J=tVtQ(EOi5yTPG(YZMq*JxjFFzPoQe2Xlmy%eN zVgwWlNlf?2ObP}m(o4z7VPph)nqgAS-F=0(I2aijxsl`Wm0q8rVl)~-l9^FzQlg28nT2JNX_CQYM^<3~X!*CG delta 702 zcmew_dPZD?jgg&!fq^m6*(xTqIJKxaCMh#%qF5B$*Z)bZ50^|VnSHMt}+ zKd)HNIX^GCw5TXGuLNwGJ@KXqVVVXu!kc&_;GjHTfK diff --git a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_Content.g.cs b/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_Content.g.cs deleted file mode 100644 index 064707e..0000000 --- a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_Content.g.cs +++ /dev/null @@ -1,855 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 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 deleted file mode 100644 index e1771bc..0000000 --- a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.cache +++ /dev/null @@ -1,20 +0,0 @@ -ShadowStream - - -winexe -C# -.cs -C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\ -ShadowStream -none -false -TRACE;DEBUG;NET;NET8_0;NETCOREAPP -C:\Users\bib\Desktop\vpr\mediaverwaltung\ShadowStream\App.xaml -31922853181 -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 deleted file mode 100644 index 797a446..0000000 --- a/ShadowStream/obj/Debug/net8.0-windows/ShadowStream_MarkupCompile.lref +++ /dev/null @@ -1,6 +0,0 @@ - - -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 6932cdc..928308a 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\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": {} + "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": {} }, "projects": { - "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": { + "C:\\Users\\Elias\\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", + "projectUniqueName": "C:\\Users\\Elias\\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\\", + "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", + "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Elias\\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:\\Users\\Elias\\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" ], @@ -64,6 +64,10 @@ "System.Drawing.Common": { "target": "Package", "version": "[6.0.0, )" + }, + "TagLibSharp": { + "target": "Package", + "version": "[2.3.0, )" } }, "imports": [ @@ -82,24 +86,24 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" } } }, - "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": { + "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", + "projectUniqueName": "C:\\Users\\Elias\\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\\", + "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", + "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Elias\\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:\\Users\\Elias\\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" ], @@ -114,8 +118,8 @@ "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" + "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": { + "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj" } } } @@ -159,6 +163,10 @@ "target": "Package", "version": "[6.0.0, )" }, + "TagLibSharp": { + "target": "Package", + "version": "[2.3.0, )" + }, "VideoLAN.LibVLC.Windows": { "target": "Package", "version": "[3.0.21, )" @@ -183,7 +191,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.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 bda40b9..c29df0e 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\bib\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\Elias\.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/project.assets.json b/ShadowStream/obj/project.assets.json index 049a729..1723fb2 100644 --- a/ShadowStream/obj/project.assets.json +++ b/ShadowStream/obj/project.assets.json @@ -962,6 +962,19 @@ } } }, + "TagLibSharp/2.3.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/TagLibSharp.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/netstandard2.0/TagLibSharp.dll": { + "related": ".pdb" + } + } + }, "VideoLAN.LibVLC.Windows/3.0.21": { "type": "package", "build": { @@ -975,7 +988,8 @@ "FFMediaToolkit": "4.6.0", "FFmpeg.AutoGen": "7.1.1", "Newtonsoft.Json": "13.0.1", - "System.Drawing.Common": "6.0.0" + "System.Drawing.Common": "6.0.0", + "TagLibSharp": "2.3.0" }, "compile": { "bin/placeholder/file finder test.dll": {} @@ -3344,6 +3358,23 @@ "system.threading.tasks.nuspec" ] }, + "TagLibSharp/2.3.0": { + "sha512": "Qo4z6ZjnIfbR3Us1Za5M2vQ97OWZPmODvVmepxZ8XW0UIVLGdO2T63/N3b23kCcyiwuIe0TQvMEQG8wUCCD1mA==", + "type": "package", + "path": "taglibsharp/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/TagLibSharp.dll", + "lib/net462/TagLibSharp.pdb", + "lib/net462/TaglibSharp.xml", + "lib/netstandard2.0/TagLibSharp.dll", + "lib/netstandard2.0/TagLibSharp.pdb", + "lib/netstandard2.0/TaglibSharp.xml", + "taglibsharp.2.3.0.nupkg.sha512", + "taglibsharp.nuspec" + ] + }, "VideoLAN.LibVLC.Windows/3.0.21": { "sha512": "1b1yjZPIzS2+s6YZv9Z5Co/q2srIvo03ZToPvZblWreeyeFGkLDwX7WZat8AxCB9uMQV6VUnms67SgQqko7Z0w==", "type": "package", @@ -4415,28 +4446,29 @@ "LibVLCSharp.WPF >= 3.9.3", "Newtonsoft.Json >= 13.0.1", "System.Drawing.Common >= 6.0.0", + "TagLibSharp >= 2.3.0", "VideoLAN.LibVLC.Windows >= 3.0.21", "file finder test >= 1.0.0" ] }, "packageFolders": { - "C:\\Users\\bib\\.nuget\\packages\\": {}, + "C:\\Users\\Elias\\.nuget\\packages\\": {}, "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", + "projectUniqueName": "C:\\Users\\Elias\\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\\", + "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", + "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Elias\\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:\\Users\\Elias\\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" ], @@ -4451,8 +4483,8 @@ "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" + "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": { + "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj" } } } @@ -4496,6 +4528,10 @@ "target": "Package", "version": "[6.0.0, )" }, + "TagLibSharp": { + "target": "Package", + "version": "[2.3.0, )" + }, "VideoLAN.LibVLC.Windows": { "target": "Package", "version": "[3.0.21, )" @@ -4520,7 +4556,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" } } } diff --git a/ShadowStream/obj/project.nuget.cache b/ShadowStream/obj/project.nuget.cache index 1de4046..54fc84d 100644 --- a/ShadowStream/obj/project.nuget.cache +++ b/ShadowStream/obj/project.nuget.cache @@ -1,68 +1,69 @@ { "version": 2, - "dgSpecHash": "/OVYBiiQ/tY=", + "dgSpecHash": "ZZ1oVq40oUc=", "success": true, - "projectFilePath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", + "projectFilePath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", "expectedPackageFiles": [ - "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" + "C:\\Users\\Elias\\.nuget\\packages\\ffmediatoolkit\\4.6.0\\ffmediatoolkit.4.6.0.nupkg.sha512", + "C:\\Users\\Elias\\.nuget\\packages\\ffmpeg.autogen\\7.1.1\\ffmpeg.autogen.7.1.1.nupkg.sha512", + "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\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.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.drawing.common\\6.0.0\\system.drawing.common.6.0.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\\taglibsharp\\2.3.0\\taglibsharp.2.3.0.nupkg.sha512", + "C:\\Users\\Elias\\.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 b32bc72..5cde5c2 100644 --- a/ShadowStream/obj/project.packagespec.json +++ b/ShadowStream/obj/project.packagespec.json @@ -1 +1 @@ -"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 +"restore":{"projectUniqueName":"C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj","projectName":"ShadowStream","projectPath":"C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj","outputPath":"C:\\Users\\Elias\\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\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj":{"projectPath":"C:\\Users\\Elias\\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, )"},"TagLibSharp":{"target":"Package","version":"[2.3.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\\Elias\\.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 3470d99..18184f2 100644 --- a/ShadowStream/obj/rider.project.model.nuget.info +++ b/ShadowStream/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17492036597923536 \ No newline at end of file +17494835172651791 \ No newline at end of file diff --git a/ShadowStream/obj/rider.project.restore.info b/ShadowStream/obj/rider.project.restore.info index 5b6844a..2aa5f11 100644 --- a/ShadowStream/obj/rider.project.restore.info +++ b/ShadowStream/obj/rider.project.restore.info @@ -1 +1 @@ -17492036620731443 \ No newline at end of file +17494835184833573 \ No newline at end of file diff --git a/file finder test/file finder test.csproj b/file finder test/file finder test.csproj index 41e26e6..e984bf0 100644 --- a/file finder test/file finder test.csproj +++ b/file finder test/file finder test.csproj @@ -13,6 +13,7 @@ + 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 c62069d..4015c4c 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+ff158be0c0c504655503c6be3f344f309a220247")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+467d6af393d3c6b2cea96536bb5e2eb38a37240b")] [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 39557ac..e31c4a6 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 @@ -47e5f1d2af8f18fa8a11535b68ad38dbd2947ed97e6bffcefe76fd844e9440b2 +e4ac38401bfd47560dc7bd9d5d1c6d560ae31b5ef8ea5c06a7b0bc411fcd198d 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 13b1954..bf0bbf0 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\bib\Desktop\vpr\mediaverwaltung\file finder test\ +build_property.ProjectDir = C:\Users\Elias\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 c6b6a020f9ad9bb44e3b3df41a912421c726a494..fe5003065007327b3c5373664c31e53f70a2c793 100644 GIT binary patch literal 4984 zcmcgw-E!Mh5DwIC5=s)15Zcf{MB9{~f@C{Q8amu$k|yKQW-@hXhZ)Tc^Fi z+c+=53-AhDaKj}R+;GV&@Bkg2fp2BYSs%-mo2jdr&l;`voc;Ek-90NGe!su{{=~$@ zcN@R{^V`fy^vm;||6aX1z5e_2zyDlX{_BsGseezaPgbqsER;IeMcjYfxoiFqi7+zn zxsDZ?y5Fn|X*R6tGpjBlvsUwj?N~Ah+-Ht7Z|j?S!E~Kt(-$(5mTz03UDAu@-rhsf zJ8J9cw(DN#Sa}EccL93N0eN5qs|``tt)>j>!Z+{eMVLsn>XF_y^!A0%t&(qKbrK+} zQ-GJ@tLIe1APQbA&6!NYGBJ4% zASRapGlPjQUdq6asr(!TzFAy{^^_GTm}8GsDa&i|BQxb3oThZdHg zu2%!kgZVz++rH|%9krcUjoY4sE$;LOc&=pFmR22G96hzdhFQ|#asQ4N%pEa>&#=T^AxR-6q?OzJ^+1?DK7ZCCEAkoUO zs3nCtC7?*Ql)ByY<`UZudZyg|u$PDtmyGxYUeZb}0aOe=0xknrfMwug;3|L#IBg@& z{$v7jl_sFPPMctb?>42+2GY<1`N?cG^6jLO#zH z$cTeF8BKdhqbXw3Mz2Cn@wJ+fHBgz@ht6Rb)I-bD_8eD4+FEJrWNUM+^zB)h(jGfe z({iQVI#%JZSC*c z26^!xYtd&mdC{j(qGcapbI((J(O=N)bn)U#rJn*=13m+;0oQ>Wz#1?DoAZPkW5Yv@ z*ihf00V05QG| zxETvR5@ThhUz_j-h-iRHcoQ;pi6M%wJNTXDr+?X2TF6EI_Ax#Yoxsn>-Q3KfC7+i4 zPTR1CuHESU95i}+Kw5028O_ICUHVYo{n5~&O=~{x$!>Kx;K3Ny;?i_#i+i!%9^UM8 zqhKhFB#lmQhHo(Y1GkTN%lWt&yq02XC>7_l2-?M`2UsXoJ=>LNo2teuOc72joVE9sleTm3_?K%@{Q#aS9njrTQT` zy&XkD9<>@`vQs6dcY;RiK~S~aoWy!9?21S_z9kXjmF6+6-a>x}L!^eLmKAJ^DIv5x zFhb^(&EHCjnt>8wuo%lS+a372Rs3@AO6)qJsLCL0T}haz6V5+spBH5tf0H;hM}!x^ qwUnqERE;_FfxdT#m?IbP<-|(gkQ~iXOkS(2H;_YjgzDwM5&r`dyN~Gr delta 1068 zcmeyNwnWJ_z}wxChk=2iIknZjv+J|nncXjs70C5X+_3zNq1=Je{{8bg%Tn$w5{?Eb zf&x|`9qw!u6Iz^FR2-9(nKU_u&0}J}JTHpi#J%af*(jtpbyeP;@Mr`&?E@Bqv1*RmT6;3Qbu85nPZ)!?rVn}{|PIhLA zzKNcho&m_wf4t1689Z6Tiuuxv-n90#uDX3Au2~YhrV{Do_U~1yrDfvjw}!WG|ioOEsVj zHeKpKaSb5W1Y#{9)&^o!KY@}iBd@om4p0W03A#XWkO_J~3^G9)#Ln 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 e3d5484ba415734fb87df8cd61165d0f0fe9260c..67026440a9fb2475f2a3a89744c935f12117831c 100644 GIT binary patch delta 461 zcmZ22@JLvUjggIkfq^m7*(xTqIJKxa#x*B1v3R4%Dn@=ZvB{?yKk?_Hs@r^u=@uh@ z44U9ZmJN*j@o0j1YPRnkzPtp4kIJb2Mm*H?(QqR#lgtP$c-e= z$OM#P2FZiK

JBdO;xLVNGFqb~~N2`;WZcF|9|Cu|qjmr2cWn?CsTTrjyJLpcfTo-cyAu}A3H0vy`ok(ryrSdnv;|Bj_xFdOEm}hXZk#U|6Ol~VNKa`Mh>7W zZYRB7;?}u!1EU|3i**#jfYFedpJxm9|Kvs{73Gv9Go#d`L=zJ;3(F+aBmXvqKo_5P_q delta 104 zcmaDPyjnnnjgggsfq^mH*(xTqIJKxaCMh#%qu44&UKEkZ=NUioW+SWFe1Yi}BX1On R&`y>OjJ&ZZLKSR#83FbkBvAkW 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 eced19e..018fec4 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\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": {} + "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": {} }, "projects": { - "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj": { + "C:\\Users\\Elias\\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", + "projectUniqueName": "C:\\Users\\Elias\\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\\", + "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", + "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Elias\\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:\\Users\\Elias\\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" ], @@ -64,6 +64,10 @@ "System.Drawing.Common": { "target": "Package", "version": "[6.0.0, )" + }, + "TagLibSharp": { + "target": "Package", + "version": "[2.3.0, )" } }, "imports": [ @@ -82,7 +86,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.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 bda40b9..c29df0e 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\bib\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + C:\Users\Elias\.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 0845f74..3ff6ec4 100644 --- a/file finder test/obj/project.assets.json +++ b/file finder test/obj/project.assets.json @@ -94,6 +94,19 @@ "rid": "win" } } + }, + "TagLibSharp/2.3.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/TagLibSharp.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/netstandard2.0/TagLibSharp.dll": { + "related": ".pdb" + } + } } } }, @@ -226,6 +239,23 @@ "system.drawing.common.nuspec", "useSharedDesignerContext.txt" ] + }, + "TagLibSharp/2.3.0": { + "sha512": "Qo4z6ZjnIfbR3Us1Za5M2vQ97OWZPmODvVmepxZ8XW0UIVLGdO2T63/N3b23kCcyiwuIe0TQvMEQG8wUCCD1mA==", + "type": "package", + "path": "taglibsharp/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net462/TagLibSharp.dll", + "lib/net462/TagLibSharp.pdb", + "lib/net462/TaglibSharp.xml", + "lib/netstandard2.0/TagLibSharp.dll", + "lib/netstandard2.0/TagLibSharp.pdb", + "lib/netstandard2.0/TaglibSharp.xml", + "taglibsharp.2.3.0.nupkg.sha512", + "taglibsharp.nuspec" + ] } }, "projectFileDependencyGroups": { @@ -233,27 +263,28 @@ "FFMediaToolkit >= 4.6.0", "FFmpeg.AutoGen >= 7.1.1", "Newtonsoft.Json >= 13.0.1", - "System.Drawing.Common >= 6.0.0" + "System.Drawing.Common >= 6.0.0", + "TagLibSharp >= 2.3.0" ] }, "packageFolders": { - "C:\\Users\\bib\\.nuget\\packages\\": {}, + "C:\\Users\\Elias\\.nuget\\packages\\": {}, "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", + "projectUniqueName": "C:\\Users\\Elias\\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\\", + "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", + "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Elias\\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:\\Users\\Elias\\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" ], @@ -300,6 +331,10 @@ "System.Drawing.Common": { "target": "Package", "version": "[6.0.0, )" + }, + "TagLibSharp": { + "target": "Package", + "version": "[2.3.0, )" } }, "imports": [ @@ -318,7 +353,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.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 ba83a06..8f94bae 100644 --- a/file finder test/obj/project.nuget.cache +++ b/file finder test/obj/project.nuget.cache @@ -1,14 +1,15 @@ { "version": 2, - "dgSpecHash": "jBSb1NTebpU=", + "dgSpecHash": "jSOJ8nukLw0=", "success": true, - "projectFilePath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", + "projectFilePath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", "expectedPackageFiles": [ - "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" + "C:\\Users\\Elias\\.nuget\\packages\\ffmediatoolkit\\4.6.0\\ffmediatoolkit.4.6.0.nupkg.sha512", + "C:\\Users\\Elias\\.nuget\\packages\\ffmpeg.autogen\\7.1.1\\ffmpeg.autogen.7.1.1.nupkg.sha512", + "C:\\Users\\Elias\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\Elias\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\Elias\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\Elias\\.nuget\\packages\\taglibsharp\\2.3.0\\taglibsharp.2.3.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 18c9f0e..a22b9d5 100644 --- a/file finder test/obj/project.packagespec.json +++ b/file finder test/obj/project.packagespec.json @@ -1 +1 @@ -"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 +"restore":{"projectUniqueName":"C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj","projectName":"file finder test","projectPath":"C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj","outputPath":"C:\\Users\\Elias\\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, )"},"TagLibSharp":{"target":"Package","version":"[2.3.0, )"}},"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 diff --git a/file finder test/obj/rider.project.model.nuget.info b/file finder test/obj/rider.project.model.nuget.info index fd2c08d..ecf061c 100644 --- a/file finder test/obj/rider.project.model.nuget.info +++ b/file finder test/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17492032581560652 \ No newline at end of file +17494835172339314 \ 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 18823ce..ddbd994 100644 --- a/file finder test/obj/rider.project.restore.info +++ b/file finder test/obj/rider.project.restore.info @@ -1 +1 @@ -17492036620356235 \ No newline at end of file +17494835184628501 \ No newline at end of file