initial push of android app and bt server. these are used to make a remote usable via phone

This commit is contained in:
Elias Quinn
2025-06-30 07:53:58 +01:00
parent 9e5b7a6999
commit 654af164ab
2009 changed files with 102252 additions and 2084 deletions

View File

@@ -0,0 +1,95 @@
using InTheHand.Net.Bluetooth;
using InTheHand.Net.Sockets;
using System;
using System.IO;
using System.Net.Sockets;
using System.Text;
using System.Threading;
namespace NotVPR_SideProjecktForVpr_FreeTime
{
public class BluetoothServer
{
private BluetoothListener _listener;
private BluetoothClient _client;
private NetworkStream _stream;
private Thread _receiveThread;
public event Action<string> MessageReceived;
public event Action ClientConnected;
public event Action<string> ErrorOccurred;
public bool IsRunning { get; private set; }
public void Init()
{
if (!BluetoothRadio.IsSupported)
throw new NotSupportedException("Bluetooth adapter not found.");
_listener = new BluetoothListener(BluetoothService.SerialPort);
_listener.Start();
Console.WriteLine("🔄 Waiting for Bluetooth client connection...");
_client = _listener.AcceptBluetoothClient();
_stream = _client.GetStream();
IsRunning = true;
Console.WriteLine("✅ Client connected.");
ClientConnected?.Invoke();
_receiveThread = new Thread(ReceiveLoop);
_receiveThread.Start();
}
private void ReceiveLoop()
{
byte[] buffer = new byte[1024];
try
{
while (IsRunning && _stream.CanRead)
{
int bytesRead = _stream.Read(buffer, 0, buffer.Length);
if (bytesRead > 0)
{
string msg = Encoding.UTF8.GetString(buffer, 0, bytesRead);
MessageReceived?.Invoke(msg);
}
}
}
catch (Exception ex)
{
ErrorOccurred?.Invoke($"Receive error: {ex.Message}");
}
}
public void SendMessage(string message)
{
if (_stream == null || !_stream.CanWrite)
{
ErrorOccurred?.Invoke("Stream not writable.");
return;
}
try
{
byte[] data = Encoding.UTF8.GetBytes(message + "\n");
_stream.Write(data, 0, data.Length);
_stream.Flush();
}
catch (Exception ex)
{
ErrorOccurred?.Invoke($"Send error: {ex.Message}");
}
}
public void Stop()
{
IsRunning = false;
_stream?.Close();
_client?.Close();
_listener?.Stop();
Console.WriteLine("🛑 Server stopped.");
}
}
}

View File

@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="32feet.NET" Version="3.5.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="9.0.6" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,49 @@
using System;
namespace NotVPR_SideProjecktForVpr_FreeTime
{
class Program
{
static void Main()
{
var server = new BluetoothServer();
server.ClientConnected += () =>
{
Console.WriteLine("Ready to communicate.");
};
server.MessageReceived += (msg) =>
{
Console.WriteLine($"\nReceived: {msg.Trim()}\n> ");
};
server.ErrorOccurred += (err) =>
{
Console.WriteLine($"Error: {err}");
};
try
{
server.Init();
while (true)
{
string input = Console.ReadLine();
if (input.Equals("exit", StringComparison.OrdinalIgnoreCase))
break;
server.SendMessage(input);
}
}
catch (Exception ex)
{
Console.WriteLine($"Startup failed: {ex.Message}");
}
finally
{
server.Stop();
}
}
}
}

View File

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

View File

@@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]

View File

@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("NotVPR_SideProjecktForVpr_FreeTime")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9e5b7a699991d66b1f07c6058463142577bc2133")]
[assembly: System.Reflection.AssemblyProductAttribute("NotVPR_SideProjecktForVpr_FreeTime")]
[assembly: System.Reflection.AssemblyTitleAttribute("NotVPR_SideProjecktForVpr_FreeTime")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
48a0c229c5b6b4edd6695485eac522af1b3b1dd5d80b723b8159683b7098ea10

View File

@@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = NotVPR_SideProjecktForVpr_FreeTime
build_property.ProjectDir = C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@@ -0,0 +1 @@
b3ebd9047193ba239f8ce6a1da9654eedd40658f61589aa710502326af38efbe

View File

@@ -0,0 +1,22 @@
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\bin\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.exe
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\bin\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.dll
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\bin\Debug\net8.0\InTheHand.Net.Personal.dll
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\bin\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.deps.json
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\bin\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.runtimeconfig.json
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\bin\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.pdb
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\bin\Debug\net8.0\System.Diagnostics.EventLog.dll
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Diagnostics.EventLog.Messages.dll
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Diagnostics.EventLog.dll
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\obj\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.csproj.AssemblyReference.cache
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\obj\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\obj\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.AssemblyInfoInputs.cache
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\obj\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.AssemblyInfo.cs
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\obj\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.csproj.CoreCompileInputs.cache
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\obj\Debug\net8.0\NotVPR_S.9343F803.Up2Date
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\obj\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.dll
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\obj\Debug\net8.0\refint\NotVPR_SideProjecktForVpr_FreeTime.dll
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\obj\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.pdb
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\obj\Debug\net8.0\NotVPR_SideProjecktForVpr_FreeTime.genruntimeconfig.cache
C:\Users\bib\Desktop\vpr\pull from pc\mediaverwaltung\NotVPR_SideProjecktForVpr_FreeTime\obj\Debug\net8.0\ref\NotVPR_SideProjecktForVpr_FreeTime.dll

View File

@@ -0,0 +1 @@
9f36f62d62033e005654b1d9de6ee92827f732d192dcde4192d26420d18b1998

View File

@@ -0,0 +1,83 @@
{
"format": 1,
"restore": {
"C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj": {}
},
"projects": {
"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"
}
}
}
}
}

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<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>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\bib\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,292 @@
{
"version": 3,
"targets": {
"net8.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"
}
}
},
"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.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.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/_._": {}
}
}
}
},
"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"
]
},
"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.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.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"
]
}
},
"projectFileDependencyGroups": {
"net8.0": [
"32feet.NET >= 3.5.0",
"System.Configuration.ConfigurationManager >= 9.0.6"
]
},
"packageFolders": {
"C:\\Users\\bib\\.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\\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"
}
}
},
"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'. This package may not be fully compatible with your project.",
"libraryId": "32feet.NET",
"targetGraphs": [
"net8.0"
]
}
]
}

View File

@@ -0,0 +1,24 @@
{
"version": 2,
"dgSpecHash": "8CeTLR2QyWg=",
"success": true,
"projectFilePath": "C:\\Users\\bib\\Desktop\\vpr\\pull from pc\\mediaverwaltung\\NotVPR_SideProjecktForVpr_FreeTime\\NotVPR_SideProjecktForVpr_FreeTime.csproj",
"expectedPackageFiles": [
"C:\\Users\\bib\\.nuget\\packages\\32feet.net\\3.5.0\\32feet.net.3.5.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.eventlog\\9.0.6\\system.diagnostics.eventlog.9.0.6.nupkg.sha512",
"C:\\Users\\bib\\.nuget\\packages\\system.security.cryptography.protecteddata\\9.0.6\\system.security.cryptography.protecteddata.9.0.6.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'. This package may not be fully compatible with your project.",
"libraryId": "32feet.NET",
"targetGraphs": [
"net8.0"
]
}
]
}

View File

@@ -0,0 +1 @@
"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","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"],"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"}}

View File

@@ -0,0 +1 @@
17510068387517735

View File

@@ -0,0 +1 @@
17512651584773219