initial push of android app and bt server. these are used to make a remote usable via phone
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\file finder test\file finder test.csproj" />
|
||||
<ProjectReference Include="..\NotVPR_SideProjecktForVpr_FreeTime\NotVPR_SideProjecktForVpr_FreeTime.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@@ -5,7 +5,8 @@
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:vlc="clr-namespace:LibVLCSharp.WPF;assembly=LibVLCSharp.WPF"
|
||||
mc:Ignorable="d"
|
||||
Title="MainWindow" Height="450" Width="800">
|
||||
Title="MainWindow" Height="450" Width="800"
|
||||
KeyUp="Key_Up">
|
||||
<Grid>
|
||||
<!-- Layout Definitions -->
|
||||
<Grid.ColumnDefinitions>
|
||||
@@ -164,7 +165,7 @@
|
||||
HorizontalAlignment="Center"
|
||||
VerticalAlignment="Bottom"
|
||||
Background="#222">
|
||||
<TextBlock Text="Titel" Foreground="White" FontSize="16" Margin="10"/>
|
||||
<TextBlock Name="title" Text="Titel" Foreground="White" FontSize="16" Margin="10"/>
|
||||
<Button Content="⏮" Width="40" Margin="10" Click="OnItemPriorButtonClick"/>
|
||||
<Button Content="▶" Width="40" Margin="10" Click="OnItemPauseBtn_Click"/>
|
||||
<Button Content="⏭" Width="40" Margin="10" Click="OnItemNextButtonClick"/>
|
||||
|
@@ -1,25 +1,28 @@
|
||||
using System.Collections.Concurrent;
|
||||
using file_finder__test;
|
||||
using LibVLCSharp.Shared;
|
||||
using ModuleManager.Modules;
|
||||
using NotVPR_SideProjecktForVpr_FreeTime;
|
||||
using ShadowStream;
|
||||
using ShadowStream.LogHelper;
|
||||
using ShadowStream.Modules;
|
||||
using ShadowStream.Obejeckte;
|
||||
using ShadowStream.ObjecktForJason;
|
||||
using ShadowStream.Views;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Net.Mime;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using file_finder__test;
|
||||
using ShadowStream;
|
||||
using ShadowStream.LogHelper;
|
||||
using ShadowStream.Obejeckte;
|
||||
using ShadowStream.ObjecktForJason;
|
||||
using ShadowStream.Modules;
|
||||
using LibVLCSharp.Shared;
|
||||
using ModuleManager.Modules;
|
||||
using System.Windows.Threading;
|
||||
using Brushes = System.Windows.Media.Brushes;
|
||||
using Color = System.Windows.Media.Color;
|
||||
using File = System.IO.File;
|
||||
using Path = System.IO.Path;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Windows.Threading;
|
||||
using ShadowStream.Views;
|
||||
using Point = System.Windows.Point;
|
||||
|
||||
|
||||
@@ -90,6 +93,7 @@ public partial class MainWindow : Window
|
||||
//Begin Login Process
|
||||
var login = new LogIn();
|
||||
login.Show();
|
||||
//login.Owner = this;
|
||||
Favorites = new Catagory("Favorites",Favorites_Home);
|
||||
|
||||
#endregion
|
||||
@@ -112,7 +116,11 @@ public partial class MainWindow : Window
|
||||
_progressTimer.Tick += ProgressTimer_Tick;
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region BlutuethLogic
|
||||
InitBluetoothServer();
|
||||
#endregion
|
||||
|
||||
#region only exdend. no remuving of code
|
||||
|
||||
//adding all extensions... example values added
|
||||
@@ -143,7 +151,7 @@ public partial class MainWindow : Window
|
||||
}
|
||||
//Quinn
|
||||
#region dont change
|
||||
//reminder to self. if issue acures. check if anyone changed folder names
|
||||
//reminder to self. if issue acures. check if anyone changed folder names/or if paths are being refrenced wrongly
|
||||
|
||||
#region ScannLogic
|
||||
|
||||
@@ -386,7 +394,7 @@ public partial class MainWindow : Window
|
||||
tmpBP.Add(Serie);
|
||||
tmpBP.Add(Photo);
|
||||
tmpBP.Add(Music);
|
||||
popupWindow = new PlaylistEditor(tmpBP,false);
|
||||
popupWindow = new PlaylistEditor(tmpBP,false,false);
|
||||
popupWindow.Owner = this;
|
||||
popupWindow.ShowInTaskbar = false;
|
||||
popupWindow.Show();
|
||||
@@ -399,7 +407,7 @@ public partial class MainWindow : Window
|
||||
tmpBP.Add(Serie);
|
||||
tmpBP.Add(Photo);
|
||||
tmpBP.Add(Music);
|
||||
popupWindow = new PlaylistEditor(tmpBP,true);
|
||||
popupWindow = new PlaylistEditor(tmpBP,true,true,Favorites);
|
||||
popupWindow.Owner = this;
|
||||
popupWindow.ShowInTaskbar = false;
|
||||
popupWindow.Show();
|
||||
@@ -621,10 +629,10 @@ public partial class MainWindow : Window
|
||||
var duration = media.Duration;
|
||||
Console.WriteLine(duration);
|
||||
videoSliderInit(duration / 1000);
|
||||
title.Text=Path.GetFileNameWithoutExtension(filePath);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
media.Parse(MediaParseOptions.ParseLocal);
|
||||
_mediaPlayer.Play(media);
|
||||
}
|
||||
@@ -691,6 +699,7 @@ public partial class MainWindow : Window
|
||||
}
|
||||
|
||||
Media media = null;
|
||||
int newIndex =0;
|
||||
|
||||
if (next)
|
||||
{
|
||||
@@ -703,7 +712,7 @@ public partial class MainWindow : Window
|
||||
}
|
||||
if (!next)
|
||||
{
|
||||
int newIndex = (tmp - 1 >= 0) ? tmp - 1 : items.Count - 1; // wrap around
|
||||
newIndex = (tmp - 1 >= 0) ? tmp - 1 : items.Count - 1; // wrap around
|
||||
var link = items[newIndex]?.getLink();
|
||||
Console.WriteLine(link);
|
||||
if (!string.IsNullOrEmpty(link))
|
||||
@@ -712,7 +721,10 @@ public partial class MainWindow : Window
|
||||
|
||||
|
||||
if (media != null)
|
||||
{
|
||||
_mediaPlayer.Play(media);
|
||||
title.Text = items[newIndex].Name.ToString();
|
||||
}
|
||||
else
|
||||
MessageBox.Show("Could not load media. Media or link is null.");
|
||||
}
|
||||
@@ -831,8 +843,50 @@ public partial class MainWindow : Window
|
||||
ScrollContentPlaylist.Visibility = Visibility.Visible;
|
||||
}
|
||||
|
||||
#region tvRemote
|
||||
BluetoothServer Server1;
|
||||
private void InitBluetoothServer()
|
||||
{
|
||||
Server1 = new BluetoothServer();
|
||||
|
||||
Server1.ClientConnected += () =>
|
||||
{
|
||||
Dispatcher.Invoke(() =>
|
||||
{
|
||||
MessageBox.Show("🔗 Client connected!");
|
||||
});
|
||||
};
|
||||
|
||||
Server1.MessageReceived += (msg) =>
|
||||
{
|
||||
Dispatcher.Invoke(() =>
|
||||
{
|
||||
MessageBox.Show($"📨 Message: {msg.Trim()}");
|
||||
});
|
||||
|
||||
// Optional: echo back the message
|
||||
Server1.SendMessage("Echo: " + msg.Trim());
|
||||
};
|
||||
|
||||
Server1.ErrorOccurred += (err) =>
|
||||
{
|
||||
Dispatcher.Invoke(() =>
|
||||
{
|
||||
MessageBox.Show($"⚠️ Error: {err}");
|
||||
});
|
||||
};
|
||||
|
||||
// Start server in background
|
||||
new Thread(() => Server1.Init())
|
||||
{
|
||||
IsBackground = true
|
||||
}.Start();
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
|
||||
#region Menue
|
||||
@@ -1115,6 +1169,7 @@ public partial class MainWindow : Window
|
||||
Slider slider = sender as Slider;
|
||||
int value = Convert.ToInt32(slider.Value);
|
||||
_mediaPlayer.Volume = value;
|
||||
Server1.SendMessage("Vol=" + value);
|
||||
log.Log("VolumeChanged");
|
||||
}
|
||||
}
|
||||
@@ -1124,7 +1179,7 @@ public partial class MainWindow : Window
|
||||
#region progress slider
|
||||
private void ItemProgress_OnValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
|
||||
{
|
||||
if (itemProgress.IsMouseOver)
|
||||
if (itemProgress.IsMouseOver&&(itemProgress.Value>_mediaPlayer.Time/1000+2||itemProgress.Value<_mediaPlayer.Time/1000-2))
|
||||
{
|
||||
ProgressBarValueChange();
|
||||
}
|
||||
@@ -1133,7 +1188,7 @@ public partial class MainWindow : Window
|
||||
{
|
||||
itemProgress.Value = timeStap/1000;
|
||||
itemProgressVisual.Value = itemProgress.Value;
|
||||
|
||||
Server1.SendMessage("Progress="+itemProgress.Value);
|
||||
}
|
||||
private void ProgressBarValueChange()
|
||||
{
|
||||
@@ -1186,6 +1241,35 @@ public partial class MainWindow : Window
|
||||
_progressTimer.Stop();
|
||||
}
|
||||
|
||||
private void Key_Up(object sender, KeyEventArgs e)
|
||||
{
|
||||
switch (e.Key)
|
||||
{
|
||||
case Key.Left:_mediaPlayer.Time=_mediaPlayer.Time-10000;break;
|
||||
case Key.Right:_mediaPlayer.Time=_mediaPlayer.Time+10000;break;
|
||||
case Key.Space:
|
||||
if (_mediaPlayer.IsPlaying)
|
||||
_mediaPlayer.Pause();
|
||||
else
|
||||
_mediaPlayer.Play();
|
||||
break;
|
||||
case Key.Escape:
|
||||
var result = MessageBox.Show(
|
||||
"Do you want to quit?",
|
||||
"Exit",
|
||||
MessageBoxButton.YesNo,
|
||||
MessageBoxImage.Question
|
||||
);
|
||||
|
||||
if (result == MessageBoxResult.Yes)
|
||||
{
|
||||
Application.Current.Shutdown();
|
||||
}
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
}
|
@@ -16,11 +16,24 @@ namespace ShadowStream.Views
|
||||
//private unsafe Catagory* _sharedListLock;
|
||||
|
||||
Catagory _selectedCatagory;
|
||||
Catagory existingCatagory;
|
||||
|
||||
public PlaylistEditor(ObservableCollection<Catagory> sharedList,bool isFaF)
|
||||
public PlaylistEditor(ObservableCollection<Catagory> sharedList,bool isFaF,bool edit,Catagory? existingPlaylist = null)
|
||||
{
|
||||
InitializeComponent();
|
||||
_sharedList = sharedList;
|
||||
|
||||
if (edit == true)
|
||||
{
|
||||
this.existingCatagory = existingPlaylist;
|
||||
this.Title = "Edit Playlist";
|
||||
}
|
||||
else
|
||||
{
|
||||
this.existingCatagory = null;
|
||||
this.Title = "Create Playlist";
|
||||
}
|
||||
|
||||
if (isFaF)
|
||||
{
|
||||
PlaylistNameBox.Text = "Favorit";
|
||||
@@ -44,6 +57,18 @@ namespace ShadowStream.Views
|
||||
btn.Visibility = Visibility.Collapsed;
|
||||
ItemDataGrid.Visibility = Visibility.Visible;
|
||||
add_btn.Visibility = Visibility.Visible;
|
||||
|
||||
if (existingCatagory != null)
|
||||
{
|
||||
foreach (var VARIABLE in selected.getAllItems())
|
||||
{
|
||||
foreach (var item in existingCatagory.getAllItems())
|
||||
{
|
||||
if(VARIABLE.Name == item.Name)
|
||||
VARIABLE.IsAdded=true;
|
||||
}
|
||||
}
|
||||
}
|
||||
ItemDataGrid.ItemsSource = selected.getAllItems();
|
||||
}
|
||||
else
|
||||
|
BIN
ShadowStream/bin/Debug/net8.0-windows/InTheHand.Net.Personal.dll
Normal file
BIN
ShadowStream/bin/Debug/net8.0-windows/InTheHand.Net.Personal.dll
Normal file
Binary file not shown.
@@ -0,0 +1,105 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"NotVPR_SideProjecktForVpr_FreeTime/1.0.0": {
|
||||
"dependencies": {
|
||||
"32feet.NET": "3.5.0",
|
||||
"System.Configuration.ConfigurationManager": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"NotVPR_SideProjecktForVpr_FreeTime.dll": {}
|
||||
}
|
||||
},
|
||||
"32feet.NET/3.5.0": {
|
||||
"runtime": {
|
||||
"lib/net/InTheHand.Net.Personal.dll": {
|
||||
"assemblyVersion": "3.5.605.0",
|
||||
"fileVersion": "3.5.605.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Configuration.ConfigurationManager/9.0.6": {
|
||||
"dependencies": {
|
||||
"System.Diagnostics.EventLog": "9.0.6",
|
||||
"System.Security.Cryptography.ProtectedData": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Configuration.ConfigurationManager.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.EventLog/9.0.6": {
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Diagnostics.EventLog.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Security.Cryptography.ProtectedData/9.0.6": {
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"NotVPR_SideProjecktForVpr_FreeTime/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"32feet.NET/3.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Edc4otytrDm/zSpssF61LsZzkxZeaCEAo4cOUO1foS6OhUUCsEPRRTmwEG+jYC2zU1sYFrpZnjJU6F3a6NjSgA==",
|
||||
"path": "32feet.net/3.5.0",
|
||||
"hashPath": "32feet.net.3.5.0.nupkg.sha512"
|
||||
},
|
||||
"System.Configuration.ConfigurationManager/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-GQYhl3XCSGhxQvbRCjQiuGbJjm1tlq2lu98SGItjeingM7D+uKNnmKlK0MMuAU1asT7YtJ8uoT83WnGCuna9Qg==",
|
||||
"path": "system.configuration.configurationmanager/9.0.6",
|
||||
"hashPath": "system.configuration.configurationmanager.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.EventLog/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-lum+Dv+8S4gqN5H1C576UcQe0M2buoRjEUVs4TctXRSWjBH3ay3w2KyQrOo1yPdRs1I+xK69STz+4mjIisFI5w==",
|
||||
"path": "system.diagnostics.eventlog/9.0.6",
|
||||
"hashPath": "system.diagnostics.eventlog.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"System.Security.Cryptography.ProtectedData/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-yErfw/3pZkJE/VKza/Cm5idTpIKOy/vsmVi59Ta5SruPVtubzxb8CtnE8tyUpzs5pr0Y28GUFfSVzAhCLN3F/Q==",
|
||||
"path": "system.security.cryptography.protecteddata/9.0.6",
|
||||
"hashPath": "system.security.cryptography.protecteddata.9.0.6.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
@@ -12,6 +12,7 @@
|
||||
"FFmpeg.AutoGen": "7.1.1",
|
||||
"LibVLCSharp.WPF": "3.9.3",
|
||||
"Newtonsoft.Json": "13.0.1",
|
||||
"NotVPR_SideProjecktForVpr_FreeTime": "1.0.0",
|
||||
"System.Drawing.Common": "6.0.0",
|
||||
"TagLibSharp": "2.3.0",
|
||||
"VideoLAN.LibVLC.Windows": "3.0.21"
|
||||
@@ -20,6 +21,14 @@
|
||||
"ShadowStream.dll": {}
|
||||
}
|
||||
},
|
||||
"32feet.NET/3.5.0": {
|
||||
"runtime": {
|
||||
"lib/net/InTheHand.Net.Personal.dll": {
|
||||
"assemblyVersion": "3.5.605.0",
|
||||
"fileVersion": "3.5.605.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"FFMediaToolkit/4.6.0": {
|
||||
"dependencies": {
|
||||
"FFmpeg.AutoGen": "7.1.1"
|
||||
@@ -137,6 +146,18 @@
|
||||
"System.Threading.Tasks": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.Configuration.ConfigurationManager/9.0.6": {
|
||||
"dependencies": {
|
||||
"System.Diagnostics.EventLog": "9.0.6",
|
||||
"System.Security.Cryptography.ProtectedData": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Configuration.ConfigurationManager.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.Debug/4.3.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "1.1.1",
|
||||
@@ -153,6 +174,28 @@
|
||||
"System.Threading": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.EventLog/9.0.6": {
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Diagnostics.EventLog.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.Tracing/4.3.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "1.1.1",
|
||||
@@ -426,6 +469,14 @@
|
||||
"System.Threading.Tasks": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.Security.Cryptography.ProtectedData/9.0.6": {
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.625.26613"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Security.Cryptography.X509Certificates/4.3.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "1.1.1",
|
||||
@@ -503,6 +554,18 @@
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"NotVPR_SideProjecktForVpr_FreeTime/1.0.0": {
|
||||
"dependencies": {
|
||||
"32feet.NET": "3.5.0",
|
||||
"System.Configuration.ConfigurationManager": "9.0.6"
|
||||
},
|
||||
"runtime": {
|
||||
"NotVPR_SideProjecktForVpr_FreeTime.dll": {
|
||||
"assemblyVersion": "1.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -512,6 +575,13 @@
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"32feet.NET/3.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Edc4otytrDm/zSpssF61LsZzkxZeaCEAo4cOUO1foS6OhUUCsEPRRTmwEG+jYC2zU1sYFrpZnjJU6F3a6NjSgA==",
|
||||
"path": "32feet.net/3.5.0",
|
||||
"hashPath": "32feet.net.3.5.0.nupkg.sha512"
|
||||
},
|
||||
"FFMediaToolkit/4.6.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -687,6 +757,13 @@
|
||||
"path": "system.collections.concurrent/4.3.0",
|
||||
"hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.Configuration.ConfigurationManager/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-GQYhl3XCSGhxQvbRCjQiuGbJjm1tlq2lu98SGItjeingM7D+uKNnmKlK0MMuAU1asT7YtJ8uoT83WnGCuna9Qg==",
|
||||
"path": "system.configuration.configurationmanager/9.0.6",
|
||||
"hashPath": "system.configuration.configurationmanager.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.Debug/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -701,6 +778,13 @@
|
||||
"path": "system.diagnostics.diagnosticsource/4.3.0",
|
||||
"hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.EventLog/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-lum+Dv+8S4gqN5H1C576UcQe0M2buoRjEUVs4TctXRSWjBH3ay3w2KyQrOo1yPdRs1I+xK69STz+4mjIisFI5w==",
|
||||
"path": "system.diagnostics.eventlog/9.0.6",
|
||||
"hashPath": "system.diagnostics.eventlog.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"System.Diagnostics.Tracing/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -883,6 +967,13 @@
|
||||
"path": "system.security.cryptography.primitives/4.3.0",
|
||||
"hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.Security.Cryptography.ProtectedData/9.0.6": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-yErfw/3pZkJE/VKza/Cm5idTpIKOy/vsmVi59Ta5SruPVtubzxb8CtnE8tyUpzs5pr0Y28GUFfSVzAhCLN3F/Q==",
|
||||
"path": "system.security.cryptography.protecteddata/9.0.6",
|
||||
"hashPath": "system.security.cryptography.protecteddata.9.0.6.nupkg.sha512"
|
||||
},
|
||||
"System.Security.Cryptography.X509Certificates/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -936,6 +1027,11 @@
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"NotVPR_SideProjecktForVpr_FreeTime/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
17
ShadowStream/bin/Debug/net8.0-windows/Temp Data/test 4.json
Normal file
17
ShadowStream/bin/Debug/net8.0-windows/Temp Data/test 4.json
Normal file
@@ -0,0 +1,17 @@
|
||||
[
|
||||
{
|
||||
"name": "Rio 2.mp4",
|
||||
"type": "Muvie",
|
||||
"path": "G:/Rio 2.mp4"
|
||||
},
|
||||
{
|
||||
"name": "Transformers Film.mp4",
|
||||
"type": "Muvie",
|
||||
"path": "G:/Transformers Film.mp4"
|
||||
},
|
||||
{
|
||||
"name": "Teenage Mutant Ninja Turtles - Full Movie_En.mp4",
|
||||
"type": "Muvie",
|
||||
"path": "G:/Teenage Mutant Ninja Turtles - Full Movie_En.mp4"
|
||||
}
|
||||
]
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -2,6 +2,7 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
@@ -44,7 +45,7 @@ namespace ModuleManager {
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
|
||||
#line 5 "..\..\..\App.xaml"
|
||||
@@ -59,7 +60,7 @@ namespace ModuleManager {
|
||||
/// </summary>
|
||||
[System.STAThreadAttribute()]
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public static void Main() {
|
||||
ModuleManager.App app = new ModuleManager.App();
|
||||
app.InitializeComponent();
|
||||
|
@@ -1,4 +1,4 @@
|
||||
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BBE033CE95728FB879F1DFB16BACEF5427F444C0"
|
||||
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "96A9FA6C989AD17E1C1CD819B3BDD897F7709830"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
@@ -45,11 +45,11 @@ namespace ModuleManager {
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.5.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
|
||||
#line 5 "..\..\..\App.xaml"
|
||||
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||
this.StartupUri = new System.Uri("Views/MainWindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
@@ -60,7 +60,7 @@ namespace ModuleManager {
|
||||
/// </summary>
|
||||
[System.STAThreadAttribute()]
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "9.0.5.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public static void Main() {
|
||||
ModuleManager.App app = new ModuleManager.App();
|
||||
app.InitializeComponent();
|
||||
|
@@ -2,6 +2,7 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
@@ -53,7 +54,7 @@ namespace ModuleManager {
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
@@ -69,7 +70,7 @@ namespace ModuleManager {
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
|
@@ -0,0 +1,89 @@
|
||||
#pragma checksum "..\..\..\..\..\Resources\LogHelper\LogWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DFDFD7DC1DFC838998FE572CA9751B51FEDD076E"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Controls.Ribbon;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
|
||||
|
||||
namespace ModuleManager {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// LogWindow
|
||||
/// </summary>
|
||||
public partial class LogWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 10 "..\..\..\..\..\Resources\LogHelper\LogWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox LogBox;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/ShadowStream;component/resources/loghelper/logwindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\..\..\..\Resources\LogHelper\LogWindow.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
this.LogBox = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("ShadowStream")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6e225465c1b6c116ca9bd40253c81c45f51e8820")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9e5b7a699991d66b1f07c6058463142577bc2133")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("ShadowStream")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("ShadowStream")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
@@ -1 +1 @@
|
||||
3f446e006fa0948c6967c653ea5873e3a871bbf39ab5a83c3118a811d66d1ff2
|
||||
3387344eecdf212f541784414662d3bde1ae01cc9719033ad42f834041a3776b
|
||||
|
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
5c9d4b1f3c0bc94501f2fdc33ce2e9857ded01a7afd8ef5d1ae1c4ad487d9fdf
|
||||
10da3612abeedf6c28db6811414a9738a5a56258711b00284f3e57e8df3e109e
|
||||
|
@@ -1773,3 +1773,14 @@ C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\obj\Debug\net
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\Resources\Pics\MusicD.jpeg
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\Views\PlaylistEditor.baml
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\Views\PlaylistEditor.g.cs
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\NotVPR_SideProjecktForVpr_FreeTime.deps.json
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\NotVPR_SideProjecktForVpr_FreeTime.runtimeconfig.json
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\NotVPR_SideProjecktForVpr_FreeTime.exe
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\InTheHand.Net.Personal.dll
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\System.Configuration.ConfigurationManager.dll
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\System.Diagnostics.EventLog.dll
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\System.Security.Cryptography.ProtectedData.dll
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Diagnostics.EventLog.Messages.dll
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Diagnostics.EventLog.dll
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\NotVPR_SideProjecktForVpr_FreeTime.dll
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\bin\Debug\net8.0-windows\NotVPR_SideProjecktForVpr_FreeTime.pdb
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -8,849 +8,5 @@
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("resources/pics/musicd.jpeg")]
|
||||
[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")]
|
||||
|
||||
|
||||
|
@@ -0,0 +1,857 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("resources/pics/musicd.jpeg")]
|
||||
[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")]
|
||||
|
||||
|
@@ -11,9 +11,9 @@ false
|
||||
TRACE;DEBUG;NET;NET8_0;NETCOREAPP
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\App.xaml
|
||||
52126927803
|
||||
8451318677653
|
||||
1-689617852
|
||||
19-1810519192
|
||||
206663139284
|
||||
2081301736048
|
||||
Resources\LogHelper\LogWindow.xaml;Views\LogIn.xaml;Views\MainWindow.xaml;Views\PlaylistEditor.xaml;Views\ProgressBar.xaml;
|
||||
|
||||
False
|
||||
|
@@ -0,0 +1,20 @@
|
||||
ShadowStream
|
||||
1.0.0.0
|
||||
|
||||
winexe
|
||||
C#
|
||||
.cs
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\
|
||||
ShadowStream
|
||||
none
|
||||
false
|
||||
TRACE;DEBUG;NET;NET8_0;NETCOREAPP
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\App.xaml
|
||||
52126927803
|
||||
1-689617852
|
||||
21-676646370
|
||||
2081301736048
|
||||
Resources\LogHelper\LogWindow.xaml;Views\LogIn.xaml;Views\MainWindow.xaml;Views\PlaylistEditor.xaml;Views\ProgressBar.xaml;
|
||||
|
||||
False
|
||||
|
@@ -2,6 +2,7 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
@@ -61,7 +62,7 @@ namespace ShadowStream {
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
@@ -77,7 +78,7 @@ namespace ShadowStream {
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
|
108
ShadowStream/obj/Debug/net8.0-windows/Views/LogIn.g.i.cs
Normal file
108
ShadowStream/obj/Debug/net8.0-windows/Views/LogIn.g.i.cs
Normal file
@@ -0,0 +1,108 @@
|
||||
#pragma checksum "..\..\..\..\Views\LogIn.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "4A0027FBC47B7021B5918847EF575752F8182B66"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Controls.Ribbon;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
|
||||
|
||||
namespace ShadowStream {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// LogIn
|
||||
/// </summary>
|
||||
public partial class LogIn : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 23 "..\..\..\..\Views\LogIn.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox UsernameBox;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 28 "..\..\..\..\Views\LogIn.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.PasswordBox PasswordBox;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/ShadowStream;component/views/login.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\..\..\Views\LogIn.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
this.UsernameBox = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 2:
|
||||
this.PasswordBox = ((System.Windows.Controls.PasswordBox)(target));
|
||||
return;
|
||||
case 3:
|
||||
|
||||
#line 34 "..\..\..\..\Views\LogIn.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.LogIn_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
@@ -1,7 +1,8 @@
|
||||
#pragma checksum "..\..\..\..\Views\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F24AF3F4080ADB91E665FA22891C7D3727B6E167"
|
||||
#pragma checksum "..\..\..\..\Views\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "02D83F6CF7A1CE05E7F06B523353C42B3794759A"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
@@ -41,7 +42,7 @@ namespace ModuleManager {
|
||||
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 30 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 31 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox SearchBox;
|
||||
|
||||
@@ -49,7 +50,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 69 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 70 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ScrollViewer ScrollContentHome;
|
||||
|
||||
@@ -57,7 +58,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 73 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 74 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Favorites_Home;
|
||||
|
||||
@@ -65,7 +66,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 82 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 83 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Muvies_Home;
|
||||
|
||||
@@ -73,7 +74,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 91 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 92 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Series_Home;
|
||||
|
||||
@@ -81,7 +82,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 100 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 101 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Music_Home;
|
||||
|
||||
@@ -89,7 +90,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 109 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 110 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Photos_Home;
|
||||
|
||||
@@ -97,7 +98,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 119 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 120 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal LibVLCSharp.WPF.VideoView VideoView;
|
||||
|
||||
@@ -105,7 +106,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 125 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 126 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ScrollViewer ScrollContentCat;
|
||||
|
||||
@@ -113,7 +114,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 128 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 129 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBlock Name_of_Catagory_Text;
|
||||
|
||||
@@ -121,7 +122,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 129 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 130 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Name_of_Catagory;
|
||||
|
||||
@@ -129,7 +130,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 135 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 136 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBlock Name_of_Catagory_Text1;
|
||||
|
||||
@@ -137,7 +138,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 136 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 137 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Name_of_Catagory1;
|
||||
|
||||
@@ -145,7 +146,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 145 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 146 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ScrollViewer ScrollContentPlaylist;
|
||||
|
||||
@@ -153,7 +154,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 146 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 147 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.StackPanel PlaylistContentPanel;
|
||||
|
||||
@@ -161,7 +162,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 158 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 161 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Slider itemProgress;
|
||||
|
||||
@@ -169,7 +170,7 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 159 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 162 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar itemProgressVisual;
|
||||
|
||||
@@ -177,7 +178,15 @@ namespace ModuleManager {
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 170 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 168 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBlock title;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 173 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Slider vol;
|
||||
|
||||
@@ -190,7 +199,7 @@ namespace ModuleManager {
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
@@ -206,7 +215,7 @@ namespace ModuleManager {
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
@@ -215,20 +224,20 @@ namespace ModuleManager {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
this.SearchBox = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 2:
|
||||
|
||||
#line 50 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.scanButton_Click);
|
||||
#line 9 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((ModuleManager.MainWindow)(target)).KeyUp += new System.Windows.Input.KeyEventHandler(this.Key_Up);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.SearchBox = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 3:
|
||||
|
||||
#line 59 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Home_OnClick);
|
||||
#line 51 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.scanButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
@@ -236,7 +245,7 @@ namespace ModuleManager {
|
||||
case 4:
|
||||
|
||||
#line 60 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Musik_OnClick);
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Home_OnClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
@@ -244,7 +253,7 @@ namespace ModuleManager {
|
||||
case 5:
|
||||
|
||||
#line 61 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Photo_OnClick);
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Musik_OnClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
@@ -252,7 +261,7 @@ namespace ModuleManager {
|
||||
case 6:
|
||||
|
||||
#line 62 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Video_OnClick);
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Photo_OnClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
@@ -260,107 +269,126 @@ namespace ModuleManager {
|
||||
case 7:
|
||||
|
||||
#line 63 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PlayListButton_OnClick);
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Video_OnClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 8:
|
||||
this.ScrollContentHome = ((System.Windows.Controls.ScrollViewer)(target));
|
||||
|
||||
#line 64 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PlayListButton_OnClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 9:
|
||||
this.Favorites_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
this.ScrollContentHome = ((System.Windows.Controls.ScrollViewer)(target));
|
||||
return;
|
||||
case 10:
|
||||
this.Muvies_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
this.Favorites_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 11:
|
||||
this.Series_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
this.Muvies_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 12:
|
||||
this.Music_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
this.Series_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 13:
|
||||
this.Photos_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
this.Music_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 14:
|
||||
this.VideoView = ((LibVLCSharp.WPF.VideoView)(target));
|
||||
this.Photos_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 15:
|
||||
this.ScrollContentCat = ((System.Windows.Controls.ScrollViewer)(target));
|
||||
this.VideoView = ((LibVLCSharp.WPF.VideoView)(target));
|
||||
return;
|
||||
case 16:
|
||||
this.Name_of_Catagory_Text = ((System.Windows.Controls.TextBlock)(target));
|
||||
this.ScrollContentCat = ((System.Windows.Controls.ScrollViewer)(target));
|
||||
return;
|
||||
case 17:
|
||||
this.Name_of_Catagory = ((System.Windows.Controls.WrapPanel)(target));
|
||||
this.Name_of_Catagory_Text = ((System.Windows.Controls.TextBlock)(target));
|
||||
return;
|
||||
case 18:
|
||||
this.Name_of_Catagory_Text1 = ((System.Windows.Controls.TextBlock)(target));
|
||||
this.Name_of_Catagory = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 19:
|
||||
this.Name_of_Catagory1 = ((System.Windows.Controls.WrapPanel)(target));
|
||||
this.Name_of_Catagory_Text1 = ((System.Windows.Controls.TextBlock)(target));
|
||||
return;
|
||||
case 20:
|
||||
this.ScrollContentPlaylist = ((System.Windows.Controls.ScrollViewer)(target));
|
||||
this.Name_of_Catagory1 = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 21:
|
||||
this.PlaylistContentPanel = ((System.Windows.Controls.StackPanel)(target));
|
||||
this.ScrollContentPlaylist = ((System.Windows.Controls.ScrollViewer)(target));
|
||||
return;
|
||||
case 22:
|
||||
this.PlaylistContentPanel = ((System.Windows.Controls.StackPanel)(target));
|
||||
return;
|
||||
case 23:
|
||||
|
||||
#line 155 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 148 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PlayListButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 23:
|
||||
this.itemProgress = ((System.Windows.Controls.Slider)(target));
|
||||
case 24:
|
||||
|
||||
#line 158 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PlayListButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 25:
|
||||
this.itemProgress = ((System.Windows.Controls.Slider)(target));
|
||||
|
||||
#line 161 "..\..\..\..\Views\MainWindow.xaml"
|
||||
this.itemProgress.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.ItemProgress_OnPreviewMouseDown);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 158 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 161 "..\..\..\..\Views\MainWindow.xaml"
|
||||
this.itemProgress.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler<double>(this.ItemProgress_OnValueChanged);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 24:
|
||||
case 26:
|
||||
this.itemProgressVisual = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 25:
|
||||
case 27:
|
||||
this.title = ((System.Windows.Controls.TextBlock)(target));
|
||||
return;
|
||||
case 28:
|
||||
|
||||
#line 166 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 169 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.OnItemPriorButtonClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 26:
|
||||
case 29:
|
||||
|
||||
#line 167 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 170 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.OnItemPauseBtn_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 27:
|
||||
case 30:
|
||||
|
||||
#line 168 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 171 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.OnItemNextButtonClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 28:
|
||||
case 31:
|
||||
this.vol = ((System.Windows.Controls.Slider)(target));
|
||||
|
||||
#line 170 "..\..\..\..\Views\MainWindow.xaml"
|
||||
#line 173 "..\..\..\..\Views\MainWindow.xaml"
|
||||
this.vol.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler<double>(this.RangeBase_OnValueChanged);
|
||||
|
||||
#line default
|
||||
|
402
ShadowStream/obj/Debug/net8.0-windows/Views/MainWindow.g.i.cs
Normal file
402
ShadowStream/obj/Debug/net8.0-windows/Views/MainWindow.g.i.cs
Normal file
@@ -0,0 +1,402 @@
|
||||
#pragma checksum "..\..\..\..\Views\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "02D83F6CF7A1CE05E7F06B523353C42B3794759A"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using LibVLCSharp.WPF;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Controls.Ribbon;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
|
||||
|
||||
namespace ModuleManager {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// MainWindow
|
||||
/// </summary>
|
||||
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 31 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox SearchBox;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 70 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ScrollViewer ScrollContentHome;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 74 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Favorites_Home;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 83 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Muvies_Home;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 92 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Series_Home;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 101 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Music_Home;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 110 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Photos_Home;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 120 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal LibVLCSharp.WPF.VideoView VideoView;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 126 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ScrollViewer ScrollContentCat;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 129 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBlock Name_of_Catagory_Text;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 130 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Name_of_Catagory;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 136 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBlock Name_of_Catagory_Text1;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 137 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.WrapPanel Name_of_Catagory1;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 146 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ScrollViewer ScrollContentPlaylist;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 147 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.StackPanel PlaylistContentPanel;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 161 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Slider itemProgress;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 162 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar itemProgressVisual;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 168 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBlock title;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 173 "..\..\..\..\Views\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Slider vol;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/ShadowStream;component/views/mainwindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\..\..\Views\MainWindow.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
|
||||
#line 9 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((ModuleManager.MainWindow)(target)).KeyUp += new System.Windows.Input.KeyEventHandler(this.Key_Up);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.SearchBox = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 3:
|
||||
|
||||
#line 51 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.scanButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 4:
|
||||
|
||||
#line 60 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Home_OnClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 5:
|
||||
|
||||
#line 61 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Musik_OnClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 6:
|
||||
|
||||
#line 62 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Photo_OnClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 7:
|
||||
|
||||
#line 63 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Video_OnClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 8:
|
||||
|
||||
#line 64 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PlayListButton_OnClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 9:
|
||||
this.ScrollContentHome = ((System.Windows.Controls.ScrollViewer)(target));
|
||||
return;
|
||||
case 10:
|
||||
this.Favorites_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 11:
|
||||
this.Muvies_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 12:
|
||||
this.Series_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 13:
|
||||
this.Music_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 14:
|
||||
this.Photos_Home = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 15:
|
||||
this.VideoView = ((LibVLCSharp.WPF.VideoView)(target));
|
||||
return;
|
||||
case 16:
|
||||
this.ScrollContentCat = ((System.Windows.Controls.ScrollViewer)(target));
|
||||
return;
|
||||
case 17:
|
||||
this.Name_of_Catagory_Text = ((System.Windows.Controls.TextBlock)(target));
|
||||
return;
|
||||
case 18:
|
||||
this.Name_of_Catagory = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 19:
|
||||
this.Name_of_Catagory_Text1 = ((System.Windows.Controls.TextBlock)(target));
|
||||
return;
|
||||
case 20:
|
||||
this.Name_of_Catagory1 = ((System.Windows.Controls.WrapPanel)(target));
|
||||
return;
|
||||
case 21:
|
||||
this.ScrollContentPlaylist = ((System.Windows.Controls.ScrollViewer)(target));
|
||||
return;
|
||||
case 22:
|
||||
this.PlaylistContentPanel = ((System.Windows.Controls.StackPanel)(target));
|
||||
return;
|
||||
case 23:
|
||||
|
||||
#line 148 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PlayListButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 24:
|
||||
|
||||
#line 158 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.PlayListButton_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 25:
|
||||
this.itemProgress = ((System.Windows.Controls.Slider)(target));
|
||||
|
||||
#line 161 "..\..\..\..\Views\MainWindow.xaml"
|
||||
this.itemProgress.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.ItemProgress_OnPreviewMouseDown);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
#line 161 "..\..\..\..\Views\MainWindow.xaml"
|
||||
this.itemProgress.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler<double>(this.ItemProgress_OnValueChanged);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 26:
|
||||
this.itemProgressVisual = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 27:
|
||||
this.title = ((System.Windows.Controls.TextBlock)(target));
|
||||
return;
|
||||
case 28:
|
||||
|
||||
#line 169 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.OnItemPriorButtonClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 29:
|
||||
|
||||
#line 170 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.OnItemPauseBtn_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 30:
|
||||
|
||||
#line 171 "..\..\..\..\Views\MainWindow.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.OnItemNextButtonClick);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 31:
|
||||
this.vol = ((System.Windows.Controls.Slider)(target));
|
||||
|
||||
#line 173 "..\..\..\..\Views\MainWindow.xaml"
|
||||
this.vol.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler<double>(this.RangeBase_OnValueChanged);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -2,6 +2,7 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
@@ -77,7 +78,7 @@ namespace ShadowStream.Views {
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
@@ -93,7 +94,7 @@ namespace ShadowStream.Views {
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
|
@@ -0,0 +1,162 @@
|
||||
#pragma checksum "..\..\..\..\Views\PlaylistEditor.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "8E6E1C7D23EFC800FE1F4A79FD4B65057F23C515"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Controls.Ribbon;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
|
||||
|
||||
namespace ShadowStream.Views {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// PlaylistEditor
|
||||
/// </summary>
|
||||
public partial class PlaylistEditor : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 18 "..\..\..\..\Views\PlaylistEditor.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox PlaylistNameBox;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 27 "..\..\..\..\Views\PlaylistEditor.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.StackPanel btn;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 35 "..\..\..\..\Views\PlaylistEditor.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.DataGrid ItemDataGrid;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 54 "..\..\..\..\Views\PlaylistEditor.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button add_btn;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/ShadowStream;component/views/playlisteditor.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\..\..\Views\PlaylistEditor.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
this.PlaylistNameBox = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 2:
|
||||
this.btn = ((System.Windows.Controls.StackPanel)(target));
|
||||
return;
|
||||
case 3:
|
||||
|
||||
#line 28 "..\..\..\..\Views\PlaylistEditor.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Muvie_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 4:
|
||||
|
||||
#line 29 "..\..\..\..\Views\PlaylistEditor.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Serie_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 5:
|
||||
|
||||
#line 30 "..\..\..\..\Views\PlaylistEditor.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Photo_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 6:
|
||||
|
||||
#line 31 "..\..\..\..\Views\PlaylistEditor.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Music_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 7:
|
||||
this.ItemDataGrid = ((System.Windows.Controls.DataGrid)(target));
|
||||
return;
|
||||
case 8:
|
||||
|
||||
#line 52 "..\..\..\..\Views\PlaylistEditor.xaml"
|
||||
((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Return_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 9:
|
||||
this.add_btn = ((System.Windows.Controls.Button)(target));
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -2,6 +2,7 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
@@ -62,7 +63,7 @@ namespace ModuleManager {
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
@@ -78,7 +79,7 @@ namespace ModuleManager {
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.13.0")]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
|
101
ShadowStream/obj/Debug/net8.0-windows/Views/ProgressBar.g.i.cs
Normal file
101
ShadowStream/obj/Debug/net8.0-windows/Views/ProgressBar.g.i.cs
Normal file
@@ -0,0 +1,101 @@
|
||||
#pragma checksum "..\..\..\..\Views\ProgressBar.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C5F8D136A10AA2C7691934CA2591235EE8C3EA9B"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using LibVLCSharp.WPF;
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Controls.Ribbon;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
|
||||
|
||||
namespace ModuleManager {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// ProgressBar
|
||||
/// </summary>
|
||||
public partial class ProgressBar : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 13 "..\..\..\..\Views\ProgressBar.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Label lab;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 14 "..\..\..\..\Views\ProgressBar.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar Bar;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/ShadowStream;component/views/progressbar.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\..\..\Views\ProgressBar.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.17.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
this.lab = ((System.Windows.Controls.Label)(target));
|
||||
return;
|
||||
case 2:
|
||||
this.Bar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -26,6 +26,7 @@
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
@@ -86,7 +87,82 @@
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.411/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj",
|
||||
"projectName": "NotVPR_SideProjecktForVpr_FreeTime",
|
||||
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj",
|
||||
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"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": {
|
||||
"32feet.NET": {
|
||||
"target": "Package",
|
||||
"version": "[3.5.0, )"
|
||||
},
|
||||
"System.Configuration.ConfigurationManager": {
|
||||
"target": "Package",
|
||||
"version": "[9.0.6, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.411/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -112,6 +188,7 @@
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
@@ -120,6 +197,9 @@
|
||||
"projectReferences": {
|
||||
"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\file finder test\\file finder test.csproj": {
|
||||
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\file finder test\\file finder test.csproj"
|
||||
},
|
||||
"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj": {
|
||||
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -187,7 +267,7 @@
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.411/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -2,6 +2,19 @@
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net8.0-windows7.0": {
|
||||
"32feet.NET/3.5.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net/InTheHand.Net.Personal.dll": {
|
||||
"related": ".XML"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net/InTheHand.Net.Personal.dll": {
|
||||
"related": ".XML"
|
||||
}
|
||||
}
|
||||
},
|
||||
"FFMediaToolkit/4.6.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@@ -315,6 +328,26 @@
|
||||
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
|
||||
}
|
||||
},
|
||||
"System.Configuration.ConfigurationManager/9.0.6": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"System.Diagnostics.EventLog": "9.0.6",
|
||||
"System.Security.Cryptography.ProtectedData": "9.0.6"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/System.Configuration.ConfigurationManager.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Configuration.ConfigurationManager.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net8.0/_._": {}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.Debug/4.3.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@@ -348,6 +381,32 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.EventLog/9.0.6": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/System.Diagnostics.EventLog.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Diagnostics.EventLog.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net8.0/_._": {}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "win"
|
||||
},
|
||||
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "win"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Diagnostics.Tracing/4.3.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@@ -864,6 +923,22 @@
|
||||
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
|
||||
}
|
||||
},
|
||||
"System.Security.Cryptography.ProtectedData/9.0.6": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net8.0/_._": {}
|
||||
}
|
||||
},
|
||||
"System.Security.Cryptography.X509Certificates/4.3.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@@ -997,10 +1072,39 @@
|
||||
"runtime": {
|
||||
"bin/placeholder/file finder test.dll": {}
|
||||
}
|
||||
},
|
||||
"NotVPR_SideProjecktForVpr_FreeTime/1.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v8.0",
|
||||
"dependencies": {
|
||||
"32feet.NET": "3.5.0",
|
||||
"System.Configuration.ConfigurationManager": "9.0.6"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/NotVPR_SideProjecktForVpr_FreeTime.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/NotVPR_SideProjecktForVpr_FreeTime.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"32feet.NET/3.5.0": {
|
||||
"sha512": "Edc4otytrDm/zSpssF61LsZzkxZeaCEAo4cOUO1foS6OhUUCsEPRRTmwEG+jYC2zU1sYFrpZnjJU6F3a6NjSgA==",
|
||||
"type": "package",
|
||||
"path": "32feet.net/3.5.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"32feet.net.3.5.0.nupkg.sha512",
|
||||
"32feet.net.nuspec",
|
||||
"lib/net-cf/InTheHand.Net.Personal.XML",
|
||||
"lib/net-cf/InTheHand.Net.Personal.dll",
|
||||
"lib/net/InTheHand.Net.Personal.XML",
|
||||
"lib/net/InTheHand.Net.Personal.dll"
|
||||
]
|
||||
},
|
||||
"FFMediaToolkit/4.6.0": {
|
||||
"sha512": "jbLcrLIEXc5jTOPu5ErsTonW/zO1auUkhWl8BksOsW58MXJRnYs1Qf7skFN8lwvFAKbd93E1+Mg3B1WtAIOHiw==",
|
||||
"type": "package",
|
||||
@@ -1538,6 +1642,34 @@
|
||||
"system.collections.concurrent.nuspec"
|
||||
]
|
||||
},
|
||||
"System.Configuration.ConfigurationManager/9.0.6": {
|
||||
"sha512": "GQYhl3XCSGhxQvbRCjQiuGbJjm1tlq2lu98SGItjeingM7D+uKNnmKlK0MMuAU1asT7YtJ8uoT83WnGCuna9Qg==",
|
||||
"type": "package",
|
||||
"path": "system.configuration.configurationmanager/9.0.6",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"PACKAGE.md",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
|
||||
"buildTransitive/net462/_._",
|
||||
"buildTransitive/net8.0/_._",
|
||||
"buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
|
||||
"lib/net462/System.Configuration.ConfigurationManager.dll",
|
||||
"lib/net462/System.Configuration.ConfigurationManager.xml",
|
||||
"lib/net8.0/System.Configuration.ConfigurationManager.dll",
|
||||
"lib/net8.0/System.Configuration.ConfigurationManager.xml",
|
||||
"lib/net9.0/System.Configuration.ConfigurationManager.dll",
|
||||
"lib/net9.0/System.Configuration.ConfigurationManager.xml",
|
||||
"lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
|
||||
"lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
|
||||
"system.configuration.configurationmanager.9.0.6.nupkg.sha512",
|
||||
"system.configuration.configurationmanager.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"System.Diagnostics.Debug/4.3.0": {
|
||||
"sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
|
||||
"type": "package",
|
||||
@@ -1627,6 +1759,40 @@
|
||||
"system.diagnostics.diagnosticsource.nuspec"
|
||||
]
|
||||
},
|
||||
"System.Diagnostics.EventLog/9.0.6": {
|
||||
"sha512": "lum+Dv+8S4gqN5H1C576UcQe0M2buoRjEUVs4TctXRSWjBH3ay3w2KyQrOo1yPdRs1I+xK69STz+4mjIisFI5w==",
|
||||
"type": "package",
|
||||
"path": "system.diagnostics.eventlog/9.0.6",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"PACKAGE.md",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"buildTransitive/net461/System.Diagnostics.EventLog.targets",
|
||||
"buildTransitive/net462/_._",
|
||||
"buildTransitive/net8.0/_._",
|
||||
"buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
|
||||
"lib/net462/System.Diagnostics.EventLog.dll",
|
||||
"lib/net462/System.Diagnostics.EventLog.xml",
|
||||
"lib/net8.0/System.Diagnostics.EventLog.dll",
|
||||
"lib/net8.0/System.Diagnostics.EventLog.xml",
|
||||
"lib/net9.0/System.Diagnostics.EventLog.dll",
|
||||
"lib/net9.0/System.Diagnostics.EventLog.xml",
|
||||
"lib/netstandard2.0/System.Diagnostics.EventLog.dll",
|
||||
"lib/netstandard2.0/System.Diagnostics.EventLog.xml",
|
||||
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
|
||||
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
|
||||
"runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml",
|
||||
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll",
|
||||
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll",
|
||||
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.xml",
|
||||
"system.diagnostics.eventlog.9.0.6.nupkg.sha512",
|
||||
"system.diagnostics.eventlog.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"System.Diagnostics.Tracing/4.3.0": {
|
||||
"sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
|
||||
"type": "package",
|
||||
@@ -3011,6 +3177,40 @@
|
||||
"system.security.cryptography.primitives.nuspec"
|
||||
]
|
||||
},
|
||||
"System.Security.Cryptography.ProtectedData/9.0.6": {
|
||||
"sha512": "yErfw/3pZkJE/VKza/Cm5idTpIKOy/vsmVi59Ta5SruPVtubzxb8CtnE8tyUpzs5pr0Y28GUFfSVzAhCLN3F/Q==",
|
||||
"type": "package",
|
||||
"path": "system.security.cryptography.protecteddata/9.0.6",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"PACKAGE.md",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets",
|
||||
"buildTransitive/net462/_._",
|
||||
"buildTransitive/net8.0/_._",
|
||||
"buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
|
||||
"lib/MonoAndroid10/_._",
|
||||
"lib/MonoTouch10/_._",
|
||||
"lib/net462/System.Security.Cryptography.ProtectedData.dll",
|
||||
"lib/net462/System.Security.Cryptography.ProtectedData.xml",
|
||||
"lib/net8.0/System.Security.Cryptography.ProtectedData.dll",
|
||||
"lib/net8.0/System.Security.Cryptography.ProtectedData.xml",
|
||||
"lib/net9.0/System.Security.Cryptography.ProtectedData.dll",
|
||||
"lib/net9.0/System.Security.Cryptography.ProtectedData.xml",
|
||||
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
|
||||
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
|
||||
"lib/xamarinios10/_._",
|
||||
"lib/xamarinmac20/_._",
|
||||
"lib/xamarintvos10/_._",
|
||||
"lib/xamarinwatchos10/_._",
|
||||
"system.security.cryptography.protecteddata.9.0.6.nupkg.sha512",
|
||||
"system.security.cryptography.protecteddata.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"System.Security.Cryptography.X509Certificates/4.3.0": {
|
||||
"sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
|
||||
"type": "package",
|
||||
@@ -4436,6 +4636,11 @@
|
||||
"type": "project",
|
||||
"path": "../file finder test/file finder test.csproj",
|
||||
"msbuildProject": "../file finder test/file finder test.csproj"
|
||||
},
|
||||
"NotVPR_SideProjecktForVpr_FreeTime/1.0.0": {
|
||||
"type": "project",
|
||||
"path": "../NotVPR_SideProjecktForVpr_FreeTime/NotVPR_SideProjecktForVpr_FreeTime.csproj",
|
||||
"msbuildProject": "../NotVPR_SideProjecktForVpr_FreeTime/NotVPR_SideProjecktForVpr_FreeTime.csproj"
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
@@ -4444,6 +4649,7 @@
|
||||
"FFmpeg.AutoGen >= 7.1.1",
|
||||
"LibVLCSharp.WPF >= 3.9.3",
|
||||
"Newtonsoft.Json >= 13.0.1",
|
||||
"NotVPR_SideProjecktForVpr_FreeTime >= 1.0.0",
|
||||
"System.Drawing.Common >= 6.0.0",
|
||||
"TagLibSharp >= 2.3.0",
|
||||
"VideoLAN.LibVLC.Windows >= 3.0.21",
|
||||
@@ -4476,6 +4682,7 @@
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
@@ -4484,6 +4691,9 @@
|
||||
"projectReferences": {
|
||||
"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\file finder test\\file finder test.csproj": {
|
||||
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\file finder test\\file finder test.csproj"
|
||||
},
|
||||
"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj": {
|
||||
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4551,8 +4761,20 @@
|
||||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Users\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.411/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"logs": [
|
||||
{
|
||||
"code": "NU1701",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package '32feet.NET 3.5.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net8.0-windows7.0'. This package may not be fully compatible with your project.",
|
||||
"libraryId": "32feet.NET",
|
||||
"targetGraphs": [
|
||||
"net8.0-windows7.0"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@@ -1,9 +1,10 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "8HYRk58W/pU=",
|
||||
"dgSpecHash": "3+C3GRVaS7I=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\bib\\.nuget\\packages\\32feet.net\\3.5.0\\32feet.net.3.5.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\ffmediatoolkit\\4.6.0\\ffmediatoolkit.4.6.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\ffmpeg.autogen\\7.1.1\\ffmpeg.autogen.7.1.1.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\libvlcsharp\\3.9.3\\libvlcsharp.3.9.3.nupkg.sha512",
|
||||
@@ -29,8 +30,10 @@
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.configuration.configurationmanager\\9.0.6\\system.configuration.configurationmanager.9.0.6.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.diagnostics.eventlog\\9.0.6\\system.diagnostics.eventlog.9.0.6.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
||||
@@ -57,6 +60,7 @@
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.protecteddata\\9.0.6\\system.security.cryptography.protecteddata.9.0.6.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512",
|
||||
@@ -65,5 +69,16 @@
|
||||
"C:\\Users\\bib\\.nuget\\packages\\taglibsharp\\2.3.0\\taglibsharp.2.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\videolan.libvlc.windows\\3.0.21\\videolan.libvlc.windows.3.0.21.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
"logs": [
|
||||
{
|
||||
"code": "NU1701",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package '32feet.NET 3.5.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net8.0-windows7.0'. This package may not be fully compatible with your project.",
|
||||
"libraryId": "32feet.NET",
|
||||
"targetGraphs": [
|
||||
"net8.0-windows7.0"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@@ -1 +1 @@
|
||||
"restore":{"projectUniqueName":"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj","projectName":"ShadowStream","projectPath":"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj","outputPath":"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\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\\pull from pc\\mediaverwaltung\\file finder test\\file finder test.csproj":{"projectPath":"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\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.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\\bib\\.dotnet\\sdk\\8.0.406/PortableRuntimeIdentifierGraph.json"}}
|
||||
"restore":{"projectUniqueName":"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj","projectName":"ShadowStream","projectPath":"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj","outputPath":"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\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\\":{},"C:\\Program Files\\dotnet\\library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0-windows7.0":{"targetAlias":"net8.0-windows","projectReferences":{"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\file finder test\\file finder test.csproj":{"projectPath":"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\file finder test\\file finder test.csproj"},"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj":{"projectPath":"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.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.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:\\Program Files\\dotnet\\sdk\\8.0.411/PortableRuntimeIdentifierGraph.json"}}
|
@@ -1 +1 @@
|
||||
17496631294685987
|
||||
17510147185240279
|
@@ -1 +1 @@
|
||||
17496631294685987
|
||||
17512651585458326
|
Reference in New Issue
Block a user