before restrucktur

This commit is contained in:
unknown 2025-06-09 19:01:41 +02:00
parent 467d6af393
commit 7e2c8d971d
36 changed files with 450 additions and 1016 deletions

View File

@ -13,7 +13,13 @@ using file_finder__test;
using ShadowStream; using ShadowStream;
using ShadowStream.LogHelper; using ShadowStream.LogHelper;
using ShadowStream.Obejeckte; using ShadowStream.Obejeckte;
using System.IO;
using System.Threading; using System.Threading;
using ShadowStream.ObjecktForJason;
using TagLib;
using ShadowStream.Modules;
using ShadowStream.ObjecktForJason;
namespace ModuleManager; namespace ModuleManager;
@ -76,11 +82,6 @@ public partial class MainWindow : Window
} }
void LoadFromJson(string path, object obj)
{
//add json logic in here
}
void Createscan() void Createscan()
{ {
//adding all string arrays to one temp array to do the initial scan of the designated drive //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 //causes delibrit null refrence exeption. so dont use it!!! :-P
videoFiles = null; videoFiles = null;
//music list,muvie list,photo list,music list //music list,muvie list,photo list,music list
//add to catagory
List<locJason> muviesJS = new List<locJason>();
List<locJason> seriesJS = new List<locJason>();
List<locJason> photosJS = new List<locJason>();
List<locJason> mucicJS = new List<locJason>();
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<Task> tasks = new List<Task>();
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) foreach (var VARIABLE in path)
{ {
Bitmap frame200 = VideoFrameExtractor.GetFrame200(VARIABLE); Bitmap frame200;
items.Add(new Item(VARIABLE, type,frame200, isFoto)); if(!isFoto)
frame200 = VideoFrameExtractor.GetFrame200(VARIABLE);
else
{
frame200 = new Bitmap(VARIABLE);
}
items.Add(new Item(VARIABLE, type,ConvertBitmapToBitmapImage(frame200), isFoto));
} }
return items; return items;
} }
List<Item> ItemCreater(List<string> paths, string type, bool isFoto, bool Music)
{
List<Item> items = new List<Item>();
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 //scan logic

View File

@ -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);
}
}
}

View File

@ -52,4 +52,15 @@ public class Item
{ {
return name.Content.ToString(); return name.Content.ToString();
} }
public BitmapImage getImage()
{
return image;
}
public string getType()
{
return type;
}
} }

View File

@ -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;
}

View File

@ -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<locJason> 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<locJason> LoadList(string listName)
{
string filePath = Path.Combine(_folderPath, $"{listName}.json");
if (!File.Exists(filePath))
return new List<locJason>(); // Return empty list if file doesn't exist
string jsonString = File.ReadAllText(filePath);
return JsonConvert.DeserializeObject<List<locJason>>(jsonString) ?? new List<locJason>();
}
// Check if list file exists
public bool ListExists(string listName)
{
string filePath = Path.Combine(_folderPath, $"{listName}.json");
return File.Exists(filePath);
}
}

View File

@ -0,0 +1,8 @@
namespace ShadowStream.ObjecktForJason;
public class locJason
{
public string path;
public string imageData;
public string type;
}

View File

@ -21,6 +21,7 @@
<PackageReference Include="LibVLCSharp.WPF" Version="3.9.3" /> <PackageReference Include="LibVLCSharp.WPF" Version="3.9.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Drawing.Common" Version="6.0.0" /> <PackageReference Include="System.Drawing.Common" Version="6.0.0" />
<PackageReference Include="TagLibSharp" Version="2.3.0" />
<PackageReference Include="VideoLAN.LibVLC.Windows" Version="3.0.21" /> <PackageReference Include="VideoLAN.LibVLC.Windows" Version="3.0.21" />
</ItemGroup> </ItemGroup>

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ShadowStream")] [assembly: System.Reflection.AssemblyCompanyAttribute("ShadowStream")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [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.AssemblyProductAttribute("ShadowStream")]
[assembly: System.Reflection.AssemblyTitleAttribute("ShadowStream")] [assembly: System.Reflection.AssemblyTitleAttribute("ShadowStream")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
a1323e4f389a69acf1cfa0e8fb8e33c9b2ef05e0c4f052e77d0f3ff6537023f5 9718aa8ac3cb83320e481966c2b1f472a9f144a777abb32f94e3f2aeaca84341

View File

@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules = build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = ShadowStream 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.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop = build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@ -1,855 +0,0 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
[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")]

View File

@ -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

View File

@ -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;;

View File

@ -1,23 +1,23 @@
{ {
"format": 1, "format": 1,
"restore": { "restore": {
"C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": {} "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": {}
}, },
"projects": { "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", "version": "1.0.0",
"restore": { "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", "projectName": "file finder test",
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj",
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\",
"outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\obj\\", "outputPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
], ],
"configFilePaths": [ "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.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
@ -64,6 +64,10 @@
"System.Drawing.Common": { "System.Drawing.Common": {
"target": "Package", "target": "Package",
"version": "[6.0.0, )" "version": "[6.0.0, )"
},
"TagLibSharp": {
"target": "Package",
"version": "[2.3.0, )"
} }
}, },
"imports": [ "imports": [
@ -82,24 +86,24 @@
"privateAssets": "all" "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", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", "projectUniqueName": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj",
"projectName": "ShadowStream", "projectName": "ShadowStream",
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj",
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\",
"outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\obj\\", "outputPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
], ],
"configFilePaths": [ "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.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
@ -114,8 +118,8 @@
"net8.0-windows7.0": { "net8.0-windows7.0": {
"targetAlias": "net8.0-windows", "targetAlias": "net8.0-windows",
"projectReferences": { "projectReferences": {
"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\\bib\\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", "target": "Package",
"version": "[6.0.0, )" "version": "[6.0.0, )"
}, },
"TagLibSharp": {
"target": "Package",
"version": "[2.3.0, )"
},
"VideoLAN.LibVLC.Windows": { "VideoLAN.LibVLC.Windows": {
"target": "Package", "target": "Package",
"version": "[3.0.21, )" "version": "[3.0.21, )"
@ -183,7 +191,7 @@
"privateAssets": "none" "privateAssets": "none"
} }
}, },
"runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"
} }
} }
} }

View File

@ -5,12 +5,12 @@
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\bib\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders> <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Elias\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion> <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\bib\.nuget\packages\" /> <SourceRoot Include="C:\Users\Elias\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" /> <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -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": { "VideoLAN.LibVLC.Windows/3.0.21": {
"type": "package", "type": "package",
"build": { "build": {
@ -975,7 +988,8 @@
"FFMediaToolkit": "4.6.0", "FFMediaToolkit": "4.6.0",
"FFmpeg.AutoGen": "7.1.1", "FFmpeg.AutoGen": "7.1.1",
"Newtonsoft.Json": "13.0.1", "Newtonsoft.Json": "13.0.1",
"System.Drawing.Common": "6.0.0" "System.Drawing.Common": "6.0.0",
"TagLibSharp": "2.3.0"
}, },
"compile": { "compile": {
"bin/placeholder/file finder test.dll": {} "bin/placeholder/file finder test.dll": {}
@ -3344,6 +3358,23 @@
"system.threading.tasks.nuspec" "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": { "VideoLAN.LibVLC.Windows/3.0.21": {
"sha512": "1b1yjZPIzS2+s6YZv9Z5Co/q2srIvo03ZToPvZblWreeyeFGkLDwX7WZat8AxCB9uMQV6VUnms67SgQqko7Z0w==", "sha512": "1b1yjZPIzS2+s6YZv9Z5Co/q2srIvo03ZToPvZblWreeyeFGkLDwX7WZat8AxCB9uMQV6VUnms67SgQqko7Z0w==",
"type": "package", "type": "package",
@ -4415,28 +4446,29 @@
"LibVLCSharp.WPF >= 3.9.3", "LibVLCSharp.WPF >= 3.9.3",
"Newtonsoft.Json >= 13.0.1", "Newtonsoft.Json >= 13.0.1",
"System.Drawing.Common >= 6.0.0", "System.Drawing.Common >= 6.0.0",
"TagLibSharp >= 2.3.0",
"VideoLAN.LibVLC.Windows >= 3.0.21", "VideoLAN.LibVLC.Windows >= 3.0.21",
"file finder test >= 1.0.0" "file finder test >= 1.0.0"
] ]
}, },
"packageFolders": { "packageFolders": {
"C:\\Users\\bib\\.nuget\\packages\\": {}, "C:\\Users\\Elias\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
}, },
"project": { "project": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", "projectUniqueName": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj",
"projectName": "ShadowStream", "projectName": "ShadowStream",
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj",
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\",
"outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\obj\\", "outputPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
], ],
"configFilePaths": [ "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.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
@ -4451,8 +4483,8 @@
"net8.0-windows7.0": { "net8.0-windows7.0": {
"targetAlias": "net8.0-windows", "targetAlias": "net8.0-windows",
"projectReferences": { "projectReferences": {
"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\\bib\\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", "target": "Package",
"version": "[6.0.0, )" "version": "[6.0.0, )"
}, },
"TagLibSharp": {
"target": "Package",
"version": "[2.3.0, )"
},
"VideoLAN.LibVLC.Windows": { "VideoLAN.LibVLC.Windows": {
"target": "Package", "target": "Package",
"version": "[3.0.21, )" "version": "[3.0.21, )"
@ -4520,7 +4556,7 @@
"privateAssets": "none" "privateAssets": "none"
} }
}, },
"runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"
} }
} }
} }

View File

@ -1,68 +1,69 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "/OVYBiiQ/tY=", "dgSpecHash": "ZZ1oVq40oUc=",
"success": true, "success": true,
"projectFilePath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj", "projectFilePath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj",
"expectedPackageFiles": [ "expectedPackageFiles": [
"C:\\Users\\bib\\.nuget\\packages\\ffmediatoolkit\\4.6.0\\ffmediatoolkit.4.6.0.nupkg.sha512", "C:\\Users\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\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\\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\\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\\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\\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\\bib\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", "C:\\Users\\Elias\\.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\\Elias\\.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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\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\\bib\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", "C:\\Users\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\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": [] "logs": []
} }

View File

@ -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"}} "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"}}

View File

@ -1 +1 @@
17492036597923536 17494835172651791

View File

@ -1 +1 @@
17492036620731443 17494835184833573

View File

@ -13,6 +13,7 @@
<PackageReference Include="FFmpeg.AutoGen" Version="7.1.1" /> <PackageReference Include="FFmpeg.AutoGen" Version="7.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Drawing.Common" Version="6.0.0" /> <PackageReference Include="System.Drawing.Common" Version="6.0.0" />
<PackageReference Include="TagLibSharp" Version="2.3.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("file finder test")] [assembly: System.Reflection.AssemblyCompanyAttribute("file finder test")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [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.AssemblyProductAttribute("file finder test")]
[assembly: System.Reflection.AssemblyTitleAttribute("file finder test")] [assembly: System.Reflection.AssemblyTitleAttribute("file finder test")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
47e5f1d2af8f18fa8a11535b68ad38dbd2947ed97e6bffcefe76fd844e9440b2 e4ac38401bfd47560dc7bd9d5d1c6d560ae31b5ef8ea5c06a7b0bc411fcd198d

View File

@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules = build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = file_finder__test 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.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop = build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@ -1,23 +1,23 @@
{ {
"format": 1, "format": 1,
"restore": { "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": { "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", "version": "1.0.0",
"restore": { "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", "projectName": "file finder test",
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj",
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\",
"outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\obj\\", "outputPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
], ],
"configFilePaths": [ "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.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
@ -64,6 +64,10 @@
"System.Drawing.Common": { "System.Drawing.Common": {
"target": "Package", "target": "Package",
"version": "[6.0.0, )" "version": "[6.0.0, )"
},
"TagLibSharp": {
"target": "Package",
"version": "[2.3.0, )"
} }
}, },
"imports": [ "imports": [
@ -82,7 +86,7 @@
"privateAssets": "all" "privateAssets": "all"
} }
}, },
"runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"
} }
} }
} }

View File

@ -5,12 +5,12 @@
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\bib\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders> <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Elias\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion> <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\bib\.nuget\packages\" /> <SourceRoot Include="C:\Users\Elias\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" /> <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -94,6 +94,19 @@
"rid": "win" "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", "system.drawing.common.nuspec",
"useSharedDesignerContext.txt" "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": { "projectFileDependencyGroups": {
@ -233,27 +263,28 @@
"FFMediaToolkit >= 4.6.0", "FFMediaToolkit >= 4.6.0",
"FFmpeg.AutoGen >= 7.1.1", "FFmpeg.AutoGen >= 7.1.1",
"Newtonsoft.Json >= 13.0.1", "Newtonsoft.Json >= 13.0.1",
"System.Drawing.Common >= 6.0.0" "System.Drawing.Common >= 6.0.0",
"TagLibSharp >= 2.3.0"
] ]
}, },
"packageFolders": { "packageFolders": {
"C:\\Users\\bib\\.nuget\\packages\\": {}, "C:\\Users\\Elias\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
}, },
"project": { "project": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "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", "projectName": "file finder test",
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj", "projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\file finder test.csproj",
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\", "packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\",
"outputPath": "C:\\Users\\bib\\Desktop\\vpr\\mediaverwaltung\\file finder test\\obj\\", "outputPath": "C:\\Users\\Elias\\Desktop\\vpr\\mediaverwaltung\\file finder test\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
], ],
"configFilePaths": [ "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.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
@ -300,6 +331,10 @@
"System.Drawing.Common": { "System.Drawing.Common": {
"target": "Package", "target": "Package",
"version": "[6.0.0, )" "version": "[6.0.0, )"
},
"TagLibSharp": {
"target": "Package",
"version": "[2.3.0, )"
} }
}, },
"imports": [ "imports": [
@ -318,7 +353,7 @@
"privateAssets": "all" "privateAssets": "all"
} }
}, },
"runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json" "runtimeIdentifierGraphPath": "C:\\Users\\Elias\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"
} }
} }
} }

View File

@ -1,14 +1,15 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "jBSb1NTebpU=", "dgSpecHash": "jSOJ8nukLw0=",
"success": true, "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": [ "expectedPackageFiles": [
"C:\\Users\\bib\\.nuget\\packages\\ffmediatoolkit\\4.6.0\\ffmediatoolkit.4.6.0.nupkg.sha512", "C:\\Users\\Elias\\.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\\Elias\\.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\\Elias\\.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\\Elias\\.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\\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": [] "logs": []
} }

View File

@ -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"}} "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"}}

View File

@ -1 +1 @@
17492032581560652 17494835172339314

View File

@ -1 +1 @@
17492036620356235 17494835184628501