new stuff
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
<PackageReference Include="LibVLCSharp.WPF" Version="3.9.3" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
|
||||
<PackageReference Include="System.Management" Version="9.0.7" />
|
||||
<PackageReference Include="TagLibSharp" Version="2.3.0" />
|
||||
<PackageReference Include="VideoLAN.LibVLC.Windows" Version="3.0.21" />
|
||||
</ItemGroup>
|
||||
@@ -52,7 +53,6 @@
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Resources\" />
|
||||
<Folder Include="ViewModels\" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@@ -10,6 +10,7 @@ using ShadowStream.ObjecktForJason;
|
||||
using ShadowStream.Views;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Management;
|
||||
using System.Net.Mime;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
@@ -82,11 +83,17 @@ public partial class MainWindow : Window
|
||||
|
||||
#endregion
|
||||
//code start
|
||||
private void MainWindow_Loaded(object sender, RoutedEventArgs e)
|
||||
private async void MainWindow_Loaded(object sender, RoutedEventArgs e)
|
||||
{
|
||||
FirstCat?.Focus();
|
||||
await Task.Yield(); // ← this forces back to UI thread if needed
|
||||
|
||||
LoadSavedData(); // ← now runs on the UI thread
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public MainWindow()
|
||||
{
|
||||
#region Init wpf
|
||||
@@ -123,6 +130,14 @@ public partial class MainWindow : Window
|
||||
#endregion
|
||||
|
||||
#region BlutuethLogic
|
||||
|
||||
bool bt = new bool();
|
||||
using (var searcher = new ManagementObjectSearcher("SELECT * FROM Win32_PnPEntity WHERE Caption LIKE '%Bluetooth%'"))
|
||||
{
|
||||
var collection = searcher.Get();
|
||||
bt = collection.Count > 0;
|
||||
}
|
||||
if(bt)
|
||||
InitBluetoothServer();
|
||||
#endregion
|
||||
|
||||
@@ -150,8 +165,6 @@ public partial class MainWindow : Window
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
LoadSavedData();
|
||||
|
||||
}
|
||||
//Quinn
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -14,6 +14,7 @@
|
||||
"Newtonsoft.Json": "13.0.1",
|
||||
"NotVPR_SideProjecktForVpr_FreeTime": "1.0.0",
|
||||
"System.Drawing.Common": "6.0.0",
|
||||
"System.Management": "9.0.7",
|
||||
"TagLibSharp": "2.3.0",
|
||||
"VideoLAN.LibVLC.Windows": "3.0.21"
|
||||
},
|
||||
@@ -125,6 +126,14 @@
|
||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
|
||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
|
||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
|
||||
"System.CodeDom/9.0.7": {
|
||||
"runtime": {
|
||||
"lib/net8.0/System.CodeDom.dll": {
|
||||
"assemblyVersion": "9.0.0.0",
|
||||
"fileVersion": "9.0.725.31616"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Collections/4.3.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "1.1.1",
|
||||
@@ -268,6 +277,25 @@
|
||||
"System.Runtime.Extensions": "4.3.0"
|
||||
}
|
||||
},
|
||||
"System.Management/9.0.7": {
|
||||
"dependencies": {
|
||||
"System.CodeDom": "9.0.7"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Management.dll": {
|
||||
"assemblyVersion": "9.0.0.7",
|
||||
"fileVersion": "9.0.725.31616"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/net8.0/System.Management.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "9.0.0.7",
|
||||
"fileVersion": "9.0.725.31616"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Net.Http/4.3.4": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "1.1.1",
|
||||
@@ -743,6 +771,13 @@
|
||||
"path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
|
||||
"hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
|
||||
},
|
||||
"System.CodeDom/9.0.7": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-skI5aEl6XbZelP1hZvSmzzm3mM98k22x19Zu1Lf4rmuYoFEMJr7s7Te/MWUk9twjz4utyXt3q3pYXxGxI/Y+zA==",
|
||||
"path": "system.codedom/9.0.7",
|
||||
"hashPath": "system.codedom.9.0.7.nupkg.sha512"
|
||||
},
|
||||
"System.Collections/4.3.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@@ -848,6 +883,13 @@
|
||||
"path": "system.linq/4.3.0",
|
||||
"hashPath": "system.linq.4.3.0.nupkg.sha512"
|
||||
},
|
||||
"System.Management/9.0.7": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-9wHNgKnZRFLZ/vSQ7+Ai9LrKkxEKh9LvC+Ta5dwQgPsyni0ET5igPATg01WW4bx/E5Q3VtRgEGithhOXaKIh0A==",
|
||||
"path": "system.management/9.0.7",
|
||||
"hashPath": "system.management.9.0.7.nupkg.sha512"
|
||||
},
|
||||
"System.Net.Http/4.3.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
ShadowStream/bin/Debug/net8.0-windows/System.CodeDom.dll
Normal file
BIN
ShadowStream/bin/Debug/net8.0-windows/System.CodeDom.dll
Normal file
Binary file not shown.
BIN
ShadowStream/bin/Debug/net8.0-windows/System.Management.dll
Normal file
BIN
ShadowStream/bin/Debug/net8.0-windows/System.Management.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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+d3cd0f1bddfb1060a6318d43ea6566d5388c2cc5")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6a63193082de43ec7a1afa9c0d75bb611f624f2f")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("ShadowStream")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("ShadowStream")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
@@ -1 +1 @@
|
||||
1c9d6c995926172f009695a59ec3b74a99b1583497c50065f5e3846adac48be6
|
||||
cda2865d56aeeea39bb46cb4f55e8418940b0342e9150df7093f6c07a1e214e2
|
||||
|
@@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = ShadowStream
|
||||
build_property.ProjectDir = C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\
|
||||
build_property.ProjectDir = C:\Users\Elias\Desktop\vpr\vpr\ShadowStream\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
|
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
f3bdaa193961663fd6d0578489d11a881ac803fc81acc660ee2e2b0e0f3d3569
|
||||
e2ada454685b4cd8af060748c62fc21f3a53adf629c63e713cd1ca9ab7d4f386
|
||||
|
@@ -2681,3 +2681,6 @@ C:\Users\Elias\Desktop\vpr\vpr\ShadowStream\obj\Debug\net8.0-windows\refint\Shad
|
||||
C:\Users\Elias\Desktop\vpr\vpr\ShadowStream\obj\Debug\net8.0-windows\ShadowStream.pdb
|
||||
C:\Users\Elias\Desktop\vpr\vpr\ShadowStream\obj\Debug\net8.0-windows\ShadowStream.genruntimeconfig.cache
|
||||
C:\Users\Elias\Desktop\vpr\vpr\ShadowStream\obj\Debug\net8.0-windows\ref\ShadowStream.dll
|
||||
C:\Users\Elias\Desktop\vpr\vpr\ShadowStream\bin\Debug\net8.0-windows\System.CodeDom.dll
|
||||
C:\Users\Elias\Desktop\vpr\vpr\ShadowStream\bin\Debug\net8.0-windows\System.Management.dll
|
||||
C:\Users\Elias\Desktop\vpr\vpr\ShadowStream\bin\Debug\net8.0-windows\runtimes\win\lib\net8.0\System.Management.dll
|
||||
|
Binary file not shown.
@@ -1 +1 @@
|
||||
39291541294b600f013bd10aff61ce9d8a9220b0c1e95a460aa73cd0b3255be1
|
||||
6f0bc9f4278d8a96cd5d5c35ae4c02a00462ee9b7b2e234d872b782b9ade9b8b
|
||||
|
Binary file not shown.
@@ -4,16 +4,16 @@
|
||||
winexe
|
||||
C#
|
||||
.cs
|
||||
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\ShadowStream\obj\Debug\net8.0-windows\
|
||||
C:\Users\Elias\Desktop\vpr\vpr\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
|
||||
C:\Users\Elias\Desktop\vpr\vpr\ShadowStream\App.xaml
|
||||
52126927803
|
||||
8451318677653
|
||||
8451965186685
|
||||
19-1810519192
|
||||
2081301736048
|
||||
209-1681890707
|
||||
Resources\LogHelper\LogWindow.xaml;Views\LogIn.xaml;Views\MainWindow.xaml;Views\PlaylistEditor.xaml;Views\ProgressBar.xaml;
|
||||
|
||||
False
|
||||
|
@@ -1,20 +0,0 @@
|
||||
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
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,23 +1,23 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": {}
|
||||
"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\ShadowStream.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\file finder test\\file finder test.csproj": {
|
||||
"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\file finder test\\file finder test.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\file finder test\\file finder test.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\file finder test\\file finder test.csproj",
|
||||
"projectName": "file finder test",
|
||||
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\file finder test\\file finder test.csproj",
|
||||
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\file finder test\\obj\\",
|
||||
"projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\file finder test\\file finder test.csproj",
|
||||
"packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\file finder test\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Users\\Elias\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
@@ -91,20 +91,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj": {
|
||||
"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\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",
|
||||
"projectUniqueName": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\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\\",
|
||||
"projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj",
|
||||
"packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\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:\\Users\\Elias\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
@@ -166,20 +166,20 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj": {
|
||||
"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\ShadowStream.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\ShadowStream.csproj",
|
||||
"projectName": "ShadowStream",
|
||||
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj",
|
||||
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\obj\\",
|
||||
"projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\ShadowStream.csproj",
|
||||
"packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Users\\Elias\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
@@ -195,11 +195,11 @@
|
||||
"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\\Elias\\Desktop\\vpr\\vpr\\file finder test\\file finder test.csproj": {
|
||||
"projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\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"
|
||||
"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj": {
|
||||
"projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -239,6 +239,10 @@
|
||||
"target": "Package",
|
||||
"version": "[6.0.0, )"
|
||||
},
|
||||
"System.Management": {
|
||||
"target": "Package",
|
||||
"version": "[9.0.7, )"
|
||||
},
|
||||
"TagLibSharp": {
|
||||
"target": "Package",
|
||||
"version": "[2.3.0, )"
|
||||
|
@@ -5,12 +5,12 @@
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\bib\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Elias\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\bib\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Users\Elias\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@@ -292,6 +292,22 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.CodeDom/9.0.7": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/System.CodeDom.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.CodeDom.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net8.0/_._": {}
|
||||
}
|
||||
},
|
||||
"System.Collections/4.3.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@@ -567,6 +583,31 @@
|
||||
"lib/netstandard1.6/System.Linq.dll": {}
|
||||
}
|
||||
},
|
||||
"System.Management/9.0.7": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"System.CodeDom": "9.0.7"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/System.Management.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Management.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net8.0/_._": {}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/net8.0/System.Management.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "win"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Net.Http/4.3.4": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@@ -1506,6 +1547,34 @@
|
||||
"runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
|
||||
]
|
||||
},
|
||||
"System.CodeDom/9.0.7": {
|
||||
"sha512": "skI5aEl6XbZelP1hZvSmzzm3mM98k22x19Zu1Lf4rmuYoFEMJr7s7Te/MWUk9twjz4utyXt3q3pYXxGxI/Y+zA==",
|
||||
"type": "package",
|
||||
"path": "system.codedom/9.0.7",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"PACKAGE.md",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"buildTransitive/net461/System.CodeDom.targets",
|
||||
"buildTransitive/net462/_._",
|
||||
"buildTransitive/net8.0/_._",
|
||||
"buildTransitive/netcoreapp2.0/System.CodeDom.targets",
|
||||
"lib/net462/System.CodeDom.dll",
|
||||
"lib/net462/System.CodeDom.xml",
|
||||
"lib/net8.0/System.CodeDom.dll",
|
||||
"lib/net8.0/System.CodeDom.xml",
|
||||
"lib/net9.0/System.CodeDom.dll",
|
||||
"lib/net9.0/System.CodeDom.xml",
|
||||
"lib/netstandard2.0/System.CodeDom.dll",
|
||||
"lib/netstandard2.0/System.CodeDom.xml",
|
||||
"system.codedom.9.0.7.nupkg.sha512",
|
||||
"system.codedom.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"System.Collections/4.3.0": {
|
||||
"sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
|
||||
"type": "package",
|
||||
@@ -2299,6 +2368,35 @@
|
||||
"system.linq.nuspec"
|
||||
]
|
||||
},
|
||||
"System.Management/9.0.7": {
|
||||
"sha512": "9wHNgKnZRFLZ/vSQ7+Ai9LrKkxEKh9LvC+Ta5dwQgPsyni0ET5igPATg01WW4bx/E5Q3VtRgEGithhOXaKIh0A==",
|
||||
"type": "package",
|
||||
"path": "system.management/9.0.7",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"PACKAGE.md",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"buildTransitive/net8.0/_._",
|
||||
"buildTransitive/netcoreapp2.0/System.Management.targets",
|
||||
"lib/net462/_._",
|
||||
"lib/net8.0/System.Management.dll",
|
||||
"lib/net8.0/System.Management.xml",
|
||||
"lib/net9.0/System.Management.dll",
|
||||
"lib/net9.0/System.Management.xml",
|
||||
"lib/netstandard2.0/System.Management.dll",
|
||||
"lib/netstandard2.0/System.Management.xml",
|
||||
"runtimes/win/lib/net8.0/System.Management.dll",
|
||||
"runtimes/win/lib/net8.0/System.Management.xml",
|
||||
"runtimes/win/lib/net9.0/System.Management.dll",
|
||||
"runtimes/win/lib/net9.0/System.Management.xml",
|
||||
"system.management.9.0.7.nupkg.sha512",
|
||||
"system.management.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"System.Net.Http/4.3.4": {
|
||||
"sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
|
||||
"type": "package",
|
||||
@@ -4651,29 +4749,30 @@
|
||||
"Newtonsoft.Json >= 13.0.1",
|
||||
"NotVPR_SideProjecktForVpr_FreeTime >= 1.0.0",
|
||||
"System.Drawing.Common >= 6.0.0",
|
||||
"System.Management >= 9.0.7",
|
||||
"TagLibSharp >= 2.3.0",
|
||||
"VideoLAN.LibVLC.Windows >= 3.0.21",
|
||||
"file finder test >= 1.0.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\bib\\.nuget\\packages\\": {},
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj",
|
||||
"projectUniqueName": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\ShadowStream.csproj",
|
||||
"projectName": "ShadowStream",
|
||||
"projectPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj",
|
||||
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\obj\\",
|
||||
"projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\ShadowStream.csproj",
|
||||
"packagesPath": "C:\\Users\\Elias\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Users\\Elias\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
@@ -4689,11 +4788,11 @@
|
||||
"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\\Elias\\Desktop\\vpr\\vpr\\file finder test\\file finder test.csproj": {
|
||||
"projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\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"
|
||||
"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj": {
|
||||
"projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -4733,6 +4832,10 @@
|
||||
"target": "Package",
|
||||
"version": "[6.0.0, )"
|
||||
},
|
||||
"System.Management": {
|
||||
"target": "Package",
|
||||
"version": "[9.0.7, )"
|
||||
},
|
||||
"TagLibSharp": {
|
||||
"target": "Package",
|
||||
"version": "[2.3.0, )"
|
||||
|
@@ -1,80 +1,84 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "3+C3GRVaS7I=",
|
||||
"dgSpecHash": "4OKjiO3Q04M=",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\ShadowStream\\ShadowStream.csproj",
|
||||
"projectFilePath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\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",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\libvlcsharp.wpf\\3.9.3\\libvlcsharp.wpf.3.9.3.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.1\\microsoft.netcore.platforms.1.1.1.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.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",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.private.uri\\4.3.2\\system.private.uri.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.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",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\bib\\.nuget\\packages\\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"
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\32feet.net\\3.5.0\\32feet.net.3.5.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\ffmediatoolkit\\4.6.0\\ffmediatoolkit.4.6.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\ffmpeg.autogen\\7.1.1\\ffmpeg.autogen.7.1.1.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\libvlcsharp\\3.9.3\\libvlcsharp.3.9.3.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\libvlcsharp.wpf\\3.9.3\\libvlcsharp.wpf.3.9.3.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.1\\microsoft.netcore.platforms.1.1.1.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.codedom\\9.0.7\\system.codedom.9.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.configuration.configurationmanager\\9.0.6\\system.configuration.configurationmanager.9.0.6.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.diagnostics.eventlog\\9.0.6\\system.diagnostics.eventlog.9.0.6.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.management\\9.0.7\\system.management.9.0.7.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.private.uri\\4.3.2\\system.private.uri.4.3.2.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.protecteddata\\9.0.6\\system.security.cryptography.protecteddata.9.0.6.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\taglibsharp\\2.3.0\\taglibsharp.2.3.0.nupkg.sha512",
|
||||
"C:\\Users\\Elias\\.nuget\\packages\\videolan.libvlc.windows\\3.0.21\\videolan.libvlc.windows.3.0.21.nupkg.sha512"
|
||||
],
|
||||
"logs": [
|
||||
{
|
||||
"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.",
|
||||
"projectPath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\ShadowStream.csproj",
|
||||
"warningLevel": 1,
|
||||
"filePath": "C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\ShadowStream.csproj",
|
||||
"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\\":{},"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"}}
|
||||
"restore":{"projectUniqueName":"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\ShadowStream.csproj","projectName":"ShadowStream","projectPath":"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\ShadowStream\\ShadowStream.csproj","outputPath":"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\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\\Elias\\Desktop\\vpr\\vpr\\file finder test\\file finder test.csproj":{"projectPath":"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\file finder test\\file finder test.csproj"},"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj":{"projectPath":"C:\\Users\\Elias\\Desktop\\vpr\\vpr\\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, )"},"System.Management":{"target":"Package","version":"[9.0.7, )"},"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 @@
|
||||
17518761385412707
|
||||
17526078619847536
|
@@ -1 +1 @@
|
||||
17518762675145624
|
||||
17526078619847536
|
Reference in New Issue
Block a user