Archived
Private
Public Access
1
0

Initial commit

This commit is contained in:
2022-09-04 12:45:01 +02:00
commit f4a01d6a69
11601 changed files with 4206660 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/projectSettingsUpdater.xml
/modules.xml
/contentModel.xml
/.idea.CommandManager.iml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectDictionaryState">
<dictionary name="leon" />
</component>
</project>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DiscordProjectSettings">
<option name="show" value="PROJECT_FILES" />
<option name="description" value="" />
</component>
</project>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
</project>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="UserContentModel">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="MarkdownSettings">
<enabledExtensions>
<entry key="MermaidLanguageExtension" value="false" />
<entry key="PlantUMLLanguageExtension" value="false" />
</enabledExtensions>
</component>
</project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="com.jetbrains.rider.android.RiderAndroidMiscFileCreationComponent">
<option name="ENSURE_MISC_FILE_EXISTS" value="true" />
</component>
</project>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
</component>
</project>

View File

@@ -0,0 +1,22 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandManager", "CommandManager\CommandManager.csproj", "{CA6C2F11-8EF7-4231-8DCD-CE33FB08E42E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ManagerTester", "ManagerTester\ManagerTester.csproj", "{EE4AF250-CC64-4E38-835C-8A5A68D7AA54}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{CA6C2F11-8EF7-4231-8DCD-CE33FB08E42E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CA6C2F11-8EF7-4231-8DCD-CE33FB08E42E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CA6C2F11-8EF7-4231-8DCD-CE33FB08E42E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CA6C2F11-8EF7-4231-8DCD-CE33FB08E42E}.Release|Any CPU.Build.0 = Release|Any CPU
{EE4AF250-CC64-4E38-835C-8A5A68D7AA54}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EE4AF250-CC64-4E38-835C-8A5A68D7AA54}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EE4AF250-CC64-4E38-835C-8A5A68D7AA54}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EE4AF250-CC64-4E38-835C-8A5A68D7AA54}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,12 @@
using System;
namespace CommandManager.Attributes {
[AttributeUsage(AttributeTargets.Class)]
public class Command : Attribute {
public string Name { get; set; }
public string[] Alias { get; set; }
public string Description { get; set; }
}
}

View File

@@ -0,0 +1,12 @@
using System;
namespace CommandManager.Attributes {
[AttributeUsage(AttributeTargets.Property)]
public class CommandArgument : Attribute {
public int ArgNum { get; set; }
public string Name { get; set; }
public string[] Suggestions { get; set; }
}
}

View File

@@ -0,0 +1,10 @@
using System;
namespace CommandManager.Attributes {
[AttributeUsage(AttributeTargets.Method)]
public class CommandHandler : Attribute {
}
}

View File

@@ -0,0 +1,32 @@
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using CommandManager.Attributes;
namespace CommandManager {
public static class CommandExecuter {
private static Dictionary<string, CommandWrapper> _commands = new();
public static void InitializeCommands(Assembly assembly = null) {
assembly ??= Assembly.GetEntryAssembly();
if (assembly == null) return;
var types = assembly.GetTypes()
.Where(t => t.GetCustomAttributes<Command>().Any());
foreach (var type in types) {
var cmd = type.GetCustomAttribute<Command>();
var args = type.GetProperties()
.Where(p => p.GetCustomAttributes<CommandArgument>().Any());
var handlers = type.GetMethods()
.Where(m => m.GetCustomAttributes<CommandHandler>().Any());
_commands.Add(cmd?.Name != null ? cmd.Name : type.Name, new CommandWrapper(type, args.ToArray(), handlers.ToArray()));
}
}
}
}

View File

@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,18 @@
using System;
using System.Reflection;
namespace CommandManager {
internal readonly struct CommandWrapper {
public Type Type { get; }
public PropertyInfo[] Args { get; }
public MethodInfo[] Handlers { get; }
public CommandWrapper(Type type, PropertyInfo[] args, MethodInfo[] handlers) {
Type = type;
Args = args;
Handlers = handlers;
}
}
}

View File

@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v5.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v5.0": {
"CommandManager/1.0.0": {
"runtime": {
"CommandManager.dll": {}
}
}
}
},
"libraries": {
"CommandManager/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@@ -0,0 +1,66 @@
{
"format": 1,
"restore": {
"D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj": {}
},
"projects": {
"D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj",
"projectName": "CommandManager",
"projectPath": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj",
"packagesPath": "C:\\Users\\leon\\.nuget\\packages\\",
"outputPath": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\leon\\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": [
"net5.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.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\leon\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\leon\.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,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]

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("CommandManager")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("CommandManager")]
[assembly: System.Reflection.AssemblyTitleAttribute("CommandManager")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
6f21aa23925a1c6ad1af4a145d3137f96c0e9d12

View File

@@ -0,0 +1,8 @@
is_global = true
build_property.TargetFramework = net5.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.PublishSingleFile =
build_property.IncludeAllContentForSelfExtract =
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows

View File

@@ -0,0 +1 @@
9d6dfdd898bf20dda73c54d1b3a76152a25849e6

View File

@@ -0,0 +1,12 @@
D:\Programmierstuff\C#\CommandManager\CommandManager\bin\Debug\net5.0\CommandManager.deps.json
D:\Programmierstuff\C#\CommandManager\CommandManager\bin\Debug\net5.0\CommandManager.dll
D:\Programmierstuff\C#\CommandManager\CommandManager\bin\Debug\net5.0\ref\CommandManager.dll
D:\Programmierstuff\C#\CommandManager\CommandManager\bin\Debug\net5.0\CommandManager.pdb
D:\Programmierstuff\C#\CommandManager\CommandManager\obj\Debug\net5.0\CommandManager.csproj.AssemblyReference.cache
D:\Programmierstuff\C#\CommandManager\CommandManager\obj\Debug\net5.0\CommandManager.GeneratedMSBuildEditorConfig.editorconfig
D:\Programmierstuff\C#\CommandManager\CommandManager\obj\Debug\net5.0\CommandManager.AssemblyInfoInputs.cache
D:\Programmierstuff\C#\CommandManager\CommandManager\obj\Debug\net5.0\CommandManager.AssemblyInfo.cs
D:\Programmierstuff\C#\CommandManager\CommandManager\obj\Debug\net5.0\CommandManager.csproj.CoreCompileInputs.cache
D:\Programmierstuff\C#\CommandManager\CommandManager\obj\Debug\net5.0\CommandManager.dll
D:\Programmierstuff\C#\CommandManager\CommandManager\obj\Debug\net5.0\ref\CommandManager.dll
D:\Programmierstuff\C#\CommandManager\CommandManager\obj\Debug\net5.0\CommandManager.pdb

View File

@@ -0,0 +1,72 @@
{
"version": 3,
"targets": {
"net5.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net5.0": []
},
"packageFolders": {
"C:\\Users\\leon\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj",
"projectName": "CommandManager",
"projectPath": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj",
"packagesPath": "C:\\Users\\leon\\.nuget\\packages\\",
"outputPath": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\leon\\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": [
"net5.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "VmCWaWbagBF4uAIwml1us1iYd08zBqDSksze20puGii2TXGqWb5NE2/FkOqB3jKYgsvnqsE7BfXLORcQB7FAHA==",
"success": true,
"projectFilePath": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj",
"expectedPackageFiles": [],
"logs": []
}

View File

@@ -0,0 +1 @@
"restore":{"projectUniqueName":"D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj","projectName":"CommandManager","projectPath":"D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj","outputPath":"D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net5.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net5.0":{"targetAlias":"net5.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net5.0":{"targetAlias":"net5.0","imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"}}

View File

@@ -0,0 +1 @@
16615938326455605

View File

@@ -0,0 +1,19 @@
using System;
using CommandManager.Attributes;
namespace ManagerTester.Commands {
[Command(Name = "test", Alias = new[]{"test2", "test3"}, Description = "This is a Test Command")]
public class TestCmd {
[CommandArgument(ArgNum = 0, Name = "Vorname", Suggestions = new[]{"Werner", "Alfred"})]
public string FirstName { get; set; }
[CommandArgument(ArgNum = 1, Name = "Nachname", Suggestions = new[]{"Meyer", "Müller"})]
public string LastName { get; set; }
[CommandHandler]
public void OnCommand() {
Console.WriteLine(FirstName + " " + LastName);
}
}
}

View File

@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\CommandManager\CommandManager.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,9 @@
using CommandManager;
namespace ManagerTester {
class Program {
static void Main(string[] args) {
CommandExecuter.InitializeCommands();
}
}
}

View File

@@ -0,0 +1,36 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v5.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v5.0": {
"ManagerTester/1.0.0": {
"dependencies": {
"CommandManager": "1.0.0"
},
"runtime": {
"ManagerTester.dll": {}
}
},
"CommandManager/1.0.0": {
"runtime": {
"CommandManager.dll": {}
}
}
}
},
"libraries": {
"ManagerTester/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"CommandManager/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\leon\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\leon\\.nuget\\packages",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
]
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net5.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "5.0.0"
}
}
}

View File

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

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("ManagerTester")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ManagerTester")]
[assembly: System.Reflection.AssemblyTitleAttribute("ManagerTester")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@@ -0,0 +1 @@
be25af3e29254429e9ed1d50ca0411a98b85b79c

View File

@@ -0,0 +1,8 @@
is_global = true
build_property.TargetFramework = net5.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.PublishSingleFile =
build_property.IncludeAllContentForSelfExtract =
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows

View File

@@ -0,0 +1 @@
715f26bef25ee03981c69428a2a00315ca3acc9a

View File

@@ -0,0 +1,19 @@
D:\Programmierstuff\C#\CommandManager\ManagerTester\bin\Debug\net5.0\ManagerTester.exe
D:\Programmierstuff\C#\CommandManager\ManagerTester\bin\Debug\net5.0\ManagerTester.deps.json
D:\Programmierstuff\C#\CommandManager\ManagerTester\bin\Debug\net5.0\ManagerTester.runtimeconfig.json
D:\Programmierstuff\C#\CommandManager\ManagerTester\bin\Debug\net5.0\ManagerTester.runtimeconfig.dev.json
D:\Programmierstuff\C#\CommandManager\ManagerTester\bin\Debug\net5.0\ManagerTester.dll
D:\Programmierstuff\C#\CommandManager\ManagerTester\bin\Debug\net5.0\ref\ManagerTester.dll
D:\Programmierstuff\C#\CommandManager\ManagerTester\bin\Debug\net5.0\ManagerTester.pdb
D:\Programmierstuff\C#\CommandManager\ManagerTester\bin\Debug\net5.0\CommandManager.dll
D:\Programmierstuff\C#\CommandManager\ManagerTester\bin\Debug\net5.0\CommandManager.pdb
D:\Programmierstuff\C#\CommandManager\ManagerTester\obj\Debug\net5.0\ManagerTester.csproj.AssemblyReference.cache
D:\Programmierstuff\C#\CommandManager\ManagerTester\obj\Debug\net5.0\ManagerTester.GeneratedMSBuildEditorConfig.editorconfig
D:\Programmierstuff\C#\CommandManager\ManagerTester\obj\Debug\net5.0\ManagerTester.AssemblyInfoInputs.cache
D:\Programmierstuff\C#\CommandManager\ManagerTester\obj\Debug\net5.0\ManagerTester.AssemblyInfo.cs
D:\Programmierstuff\C#\CommandManager\ManagerTester\obj\Debug\net5.0\ManagerTester.csproj.CoreCompileInputs.cache
D:\Programmierstuff\C#\CommandManager\ManagerTester\obj\Debug\net5.0\ManagerTester.csproj.CopyComplete
D:\Programmierstuff\C#\CommandManager\ManagerTester\obj\Debug\net5.0\ManagerTester.dll
D:\Programmierstuff\C#\CommandManager\ManagerTester\obj\Debug\net5.0\ref\ManagerTester.dll
D:\Programmierstuff\C#\CommandManager\ManagerTester\obj\Debug\net5.0\ManagerTester.pdb
D:\Programmierstuff\C#\CommandManager\ManagerTester\obj\Debug\net5.0\ManagerTester.genruntimeconfig.cache

View File

@@ -0,0 +1 @@
a253c47829891b4d4cafd63d9707e2ad458a7f5d

View File

@@ -0,0 +1,128 @@
{
"format": 1,
"restore": {
"D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\ManagerTester.csproj": {}
},
"projects": {
"D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj",
"projectName": "CommandManager",
"projectPath": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj",
"packagesPath": "C:\\Users\\leon\\.nuget\\packages\\",
"outputPath": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\leon\\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": [
"net5.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\ManagerTester.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\ManagerTester.csproj",
"projectName": "ManagerTester",
"projectPath": "D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\ManagerTester.csproj",
"packagesPath": "C:\\Users\\leon\\.nuget\\packages\\",
"outputPath": "D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\leon\\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": [
"net5.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"projectReferences": {
"D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj": {
"projectPath": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.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\leon\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\leon\.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,95 @@
{
"version": 3,
"targets": {
"net5.0": {
"CommandManager/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v5.0",
"compile": {
"bin/placeholder/CommandManager.dll": {}
},
"runtime": {
"bin/placeholder/CommandManager.dll": {}
}
}
}
},
"libraries": {
"CommandManager/1.0.0": {
"type": "project",
"path": "../CommandManager/CommandManager.csproj",
"msbuildProject": "../CommandManager/CommandManager.csproj"
}
},
"projectFileDependencyGroups": {
"net5.0": [
"CommandManager >= 1.0.0"
]
},
"packageFolders": {
"C:\\Users\\leon\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\ManagerTester.csproj",
"projectName": "ManagerTester",
"projectPath": "D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\ManagerTester.csproj",
"packagesPath": "C:\\Users\\leon\\.nuget\\packages\\",
"outputPath": "D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\leon\\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": [
"net5.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"projectReferences": {
"D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj": {
"projectPath": "D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net5.0": {
"targetAlias": "net5.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "any0KsW7iKn+pyxCD9IPQAT9W1xaM37W2tqpochHmLOy8FmnRH49rVcFuzDKCR4kZ9pnfXuAnXfWeaWPMdCpUw==",
"success": true,
"projectFilePath": "D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\ManagerTester.csproj",
"expectedPackageFiles": [],
"logs": []
}

View File

@@ -0,0 +1 @@
"restore":{"projectUniqueName":"D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\ManagerTester.csproj","projectName":"ManagerTester","projectPath":"D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\ManagerTester.csproj","outputPath":"D:\\Programmierstuff\\C#\\CommandManager\\ManagerTester\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net5.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net5.0":{"targetAlias":"net5.0","projectReferences":{"D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj":{"projectPath":"D:\\Programmierstuff\\C#\\CommandManager\\CommandManager\\CommandManager.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net5.0":{"targetAlias":"net5.0","imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"}}

View File

@@ -0,0 +1 @@
16615942723708016

View File

@@ -0,0 +1,7 @@
{
"sdk": {
"version": "5.0.0",
"rollForward": "latestMinor",
"allowPrerelease": false
}
}