All the runas of mine
This commit is contained in:
BIN
Runas/bin/Debug/Runas.1.0.0.nupkg
Normal file
BIN
Runas/bin/Debug/Runas.1.0.0.nupkg
Normal file
Binary file not shown.
BIN
Runas/bin/Debug/net5.0/Newtonsoft.Json.dll
Normal file
BIN
Runas/bin/Debug/net5.0/Newtonsoft.Json.dll
Normal file
Binary file not shown.
68
Runas/bin/Debug/net5.0/Program.cs
Normal file
68
Runas/bin/Debug/net5.0/Program.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
using Newtonsoft.Json;
|
||||
using System.Diagnostics;
|
||||
using System;
|
||||
using System.Text.RegularExpressions;
|
||||
namespace Runas
|
||||
{
|
||||
class Program
|
||||
{
|
||||
public static string DataText = RegexAllEnv(Runas.Properties.Resources.progs);
|
||||
public static dynamic jprograms = JsonConvert.DeserializeObject(DataText);
|
||||
public static string RegexAllEnv(string data)
|
||||
{
|
||||
System.Collections.Hashtable env = (System.Collections.Hashtable)Environment.GetEnvironmentVariables();
|
||||
string val;
|
||||
foreach (System.Collections.DictionaryEntry key in env)
|
||||
{
|
||||
val = (string)key.Value;
|
||||
val = val.Replace(@"\", @"\\");
|
||||
if (key.Key != "Path" && key.Key != "path")
|
||||
{
|
||||
data = val.EndsWith(@"\") ? Regex.Replace(data, $"\\u0025{key.Key}\\u0025\\\\", val, RegexOptions.IgnoreCase) : Regex.Replace(data, $"\\u0025{key.Key}\\u0025", val, RegexOptions.IgnoreCase);
|
||||
// val.EndsWith(@"\")? data.Replace($"%{key.Key}%\\", val) : data.Replace($"%{key.Key}%",val);
|
||||
}
|
||||
}
|
||||
return data;
|
||||
}
|
||||
public static bool DoRun(string program)
|
||||
{
|
||||
Process[] process = Process.GetProcessesByName(program);
|
||||
return (process.Length > 0);
|
||||
}
|
||||
public static void RunProcess(string programName)
|
||||
{
|
||||
|
||||
if (!(DoRun(programName)))
|
||||
{
|
||||
if (programName.Equals("AutoHotKey"))
|
||||
{
|
||||
Process.Start(jprograms[programName][0].Value, $"\u0022{jprograms[programName][1].Value.ToString()}\u0022");
|
||||
}
|
||||
|
||||
else if (jprograms[programName].Count > 1)
|
||||
{
|
||||
foreach (var prog in jprograms[programName])
|
||||
{
|
||||
if (System.IO.File.Exists(prog.Value))
|
||||
{
|
||||
Process.Start(prog.Value);
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (jprograms[programName].Count == 1)
|
||||
{
|
||||
Process.Start(jprograms[programName][0].Value);
|
||||
}
|
||||
}
|
||||
}
|
||||
static void Main(string[] args)
|
||||
{
|
||||
foreach (var prog in jprograms)
|
||||
{
|
||||
string ProgProg = ((Newtonsoft.Json.Linq.JProperty)prog).Name;
|
||||
System.Threading.Thread thread = new(new System.Threading.ThreadStart(() => RunProcess(ProgProg)));
|
||||
thread.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
85
Runas/bin/Debug/net5.0/Properties/Resources.Designer.cs
generated
Normal file
85
Runas/bin/Debug/net5.0/Properties/Resources.Designer.cs
generated
Normal file
@@ -0,0 +1,85 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace Runas.Properties {
|
||||
using System;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||
/// </summary>
|
||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class Resources {
|
||||
|
||||
private static global::System.Resources.ResourceManager resourceMan;
|
||||
|
||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||
|
||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||
internal Resources() {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the cached ResourceManager instance used by this class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||
get {
|
||||
if (object.ReferenceEquals(resourceMan, null)) {
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Runas.Properties.Resources", typeof(Resources).Assembly);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Overrides the current thread's CurrentUICulture property for all
|
||||
/// resource lookups using this strongly typed resource class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Globalization.CultureInfo Culture {
|
||||
get {
|
||||
return resourceCulture;
|
||||
}
|
||||
set {
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to {
|
||||
/// "AutoHotKey": [
|
||||
/// "C:\\Program Files\\AutoHotkey\\AutoHotkey.exe",
|
||||
/// "D:\\Drive\\טוויקים למחשב\\myscript 3.0\\myscript 2.0.ahk"
|
||||
/// ],
|
||||
/// "Lightshot": [
|
||||
/// "C:\\Program Files (x86)\\Skillbrains\\lightshot\\Lightshot.exe"
|
||||
/// ],
|
||||
/// "AsusNbKeys": [
|
||||
/// "C:\\Program Files (x86)\\ASUS\\ATK Package\\AsusNbKeys\\AsusNbKeys.exe",
|
||||
/// "C:\\Program Files (x86)\\ASUS\\ATK Package\\ATK Hotkey\\AsusNbKeys.exe"
|
||||
/// ],
|
||||
/// "HControl": [
|
||||
/// "C:\\Program Files (x86)\\ASUS\ [rest of string was truncated]";.
|
||||
/// </summary>
|
||||
internal static string progs {
|
||||
get {
|
||||
return ResourceManager.GetString("progs", resourceCulture);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
41
Runas/bin/Debug/net5.0/Runas.deps.json
Normal file
41
Runas/bin/Debug/net5.0/Runas.deps.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v5.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v5.0": {
|
||||
"Runas/1.0.0": {
|
||||
"dependencies": {
|
||||
"Newtonsoft.Json": "13.0.1"
|
||||
},
|
||||
"runtime": {
|
||||
"Runas.dll": {}
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/13.0.1": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {
|
||||
"assemblyVersion": "13.0.0.0",
|
||||
"fileVersion": "13.0.1.25517"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Runas/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Newtonsoft.Json/13.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
|
||||
"path": "newtonsoft.json/13.0.1",
|
||||
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
BIN
Runas/bin/Debug/net5.0/Runas.dll
Normal file
BIN
Runas/bin/Debug/net5.0/Runas.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Debug/net5.0/Runas.exe
Normal file
BIN
Runas/bin/Debug/net5.0/Runas.exe
Normal file
Binary file not shown.
BIN
Runas/bin/Debug/net5.0/Runas.pdb
Normal file
BIN
Runas/bin/Debug/net5.0/Runas.pdb
Normal file
Binary file not shown.
8
Runas/bin/Debug/net5.0/Runas.runtimeconfig.dev.json
Normal file
8
Runas/bin/Debug/net5.0/Runas.runtimeconfig.dev.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\Saret\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\Saret\\.nuget\\packages"
|
||||
]
|
||||
}
|
||||
}
|
9
Runas/bin/Debug/net5.0/Runas.runtimeconfig.json
Normal file
9
Runas/bin/Debug/net5.0/Runas.runtimeconfig.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net5.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "5.0.0"
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
BIN
Runas/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll
Normal file
BIN
Runas/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Debug/net6.0/Microsoft.Extensions.Options.dll
Normal file
BIN
Runas/bin/Debug/net6.0/Microsoft.Extensions.Options.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll
Normal file
BIN
Runas/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Debug/net6.0/Newtonsoft.Json.dll
Normal file
BIN
Runas/bin/Debug/net6.0/Newtonsoft.Json.dll
Normal file
Binary file not shown.
229
Runas/bin/Debug/net6.0/Runas.deps.json
Normal file
229
Runas/bin/Debug/net6.0/Runas.deps.json
Normal file
@@ -0,0 +1,229 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"Runas/1.0.0": {
|
||||
"dependencies": {
|
||||
"Newtonsoft.Json": "13.0.2",
|
||||
"Serilog": "2.12.0",
|
||||
"Serilog.Enrichers.Environment": "2.2.0",
|
||||
"Serilog.Enrichers.Thread": "3.1.0",
|
||||
"Serilog.Extensions.Logging": "3.1.0",
|
||||
"Serilog.Sinks.File": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Runas.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging/2.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "2.0.0",
|
||||
"Microsoft.Extensions.Options": "2.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/2.0.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options/2.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
|
||||
"Microsoft.Extensions.Primitives": "2.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/2.0.0": {
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "4.4.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/13.0.2": {
|
||||
"runtime": {
|
||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||
"assemblyVersion": "13.0.0.0",
|
||||
"fileVersion": "13.0.2.27524"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog/2.12.0": {
|
||||
"runtime": {
|
||||
"lib/net6.0/Serilog.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.12.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog.Enrichers.Environment/2.2.0": {
|
||||
"dependencies": {
|
||||
"Serilog": "2.12.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Serilog.Enrichers.Environment.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.2.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog.Enrichers.Thread/3.1.0": {
|
||||
"dependencies": {
|
||||
"Serilog": "2.12.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Serilog.Enrichers.Thread.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "3.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog.Extensions.Logging/3.1.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Logging": "2.0.0",
|
||||
"Serilog": "2.12.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "3.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog.Sinks.File/5.0.0": {
|
||||
"dependencies": {
|
||||
"Serilog": "2.12.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Serilog.Sinks.File.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/4.4.0": {}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Runas/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-eUdJ0Q/GfVyUJc0Jal5L1QZLceL78pvEM9wEKcHeI24KorqMDoVX+gWsMGLulQMfOwsUaPtkpQM2pFERTzSfSg==",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/2.0.0",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VP10syWV/vxYYMKgZ2eDESmUsz3gPxvBn5J6tkVN8lI4M+dF43RN8fWsEPbcAneDmZrHl3Pv23z05nmyGkJlpg==",
|
||||
"path": "microsoft.extensions.logging/2.0.0",
|
||||
"hashPath": "microsoft.extensions.logging.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-6ZCllUYGFukkymSTx3Yr0G/ajRxoNJp7/FqSxSB4fGISST54ifBhgu4Nc0ItGi3i6DqwuNd8SUyObmiC++AO2Q==",
|
||||
"path": "microsoft.extensions.logging.abstractions/2.0.0",
|
||||
"hashPath": "microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Options/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-sAKBgjl2gWsECBLLR9K54T7/uZaP2n9GhMYHay/oOLfvpvX0+iNAlQ2NJgVE352C9Fs5CDV3VbNTK8T2aNKQFA==",
|
||||
"path": "microsoft.extensions.options/2.0.0",
|
||||
"hashPath": "microsoft.extensions.options.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==",
|
||||
"path": "microsoft.extensions.primitives/2.0.0",
|
||||
"hashPath": "microsoft.extensions.primitives.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Newtonsoft.Json/13.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==",
|
||||
"path": "newtonsoft.json/13.0.2",
|
||||
"hashPath": "newtonsoft.json.13.0.2.nupkg.sha512"
|
||||
},
|
||||
"Serilog/2.12.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-xaiJLIdu6rYMKfQMYUZgTy8YK7SMZjB4Yk50C/u//Z4OsvxkUfSPJy4nknfvwAC34yr13q7kcyh4grbwhSxyZg==",
|
||||
"path": "serilog/2.12.0",
|
||||
"hashPath": "serilog.2.12.0.nupkg.sha512"
|
||||
},
|
||||
"Serilog.Enrichers.Environment/2.2.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-DMrj3A4l65kc4JouQyZjjFv7N58Y7lGsB81kSzorTwUGeI2wrTy7CVwSOfG90/Pcu/HV5bwGrUmxDZ38pON+5Q==",
|
||||
"path": "serilog.enrichers.environment/2.2.0",
|
||||
"hashPath": "serilog.enrichers.environment.2.2.0.nupkg.sha512"
|
||||
},
|
||||
"Serilog.Enrichers.Thread/3.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-85lWsGRJpRxvKT6j/H67no55SUBsBIvp556TKuBTGhjtoPeq+L7j/sDWbgAtvT0p7u7/phJyX6j35PQ4Vtqw0g==",
|
||||
"path": "serilog.enrichers.thread/3.1.0",
|
||||
"hashPath": "serilog.enrichers.thread.3.1.0.nupkg.sha512"
|
||||
},
|
||||
"Serilog.Extensions.Logging/3.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==",
|
||||
"path": "serilog.extensions.logging/3.1.0",
|
||||
"hashPath": "serilog.extensions.logging.3.1.0.nupkg.sha512"
|
||||
},
|
||||
"Serilog.Sinks.File/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
|
||||
"path": "serilog.sinks.file/5.0.0",
|
||||
"hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==",
|
||||
"path": "system.runtime.compilerservices.unsafe/4.4.0",
|
||||
"hashPath": "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
BIN
Runas/bin/Debug/net6.0/Runas.dll
Normal file
BIN
Runas/bin/Debug/net6.0/Runas.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Debug/net6.0/Runas.exe
Normal file
BIN
Runas/bin/Debug/net6.0/Runas.exe
Normal file
Binary file not shown.
9
Runas/bin/Debug/net6.0/Runas.runtimeconfig.json
Normal file
9
Runas/bin/Debug/net6.0/Runas.runtimeconfig.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
}
|
||||
}
|
BIN
Runas/bin/Debug/net6.0/Serilog.Enrichers.Environment.dll
Normal file
BIN
Runas/bin/Debug/net6.0/Serilog.Enrichers.Environment.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Debug/net6.0/Serilog.Enrichers.Thread.dll
Normal file
BIN
Runas/bin/Debug/net6.0/Serilog.Enrichers.Thread.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Debug/net6.0/Serilog.Extensions.Logging.dll
Normal file
BIN
Runas/bin/Debug/net6.0/Serilog.Extensions.Logging.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Debug/net6.0/Serilog.Sinks.File.dll
Normal file
BIN
Runas/bin/Debug/net6.0/Serilog.Sinks.File.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Debug/net6.0/Serilog.dll
Normal file
BIN
Runas/bin/Debug/net6.0/Serilog.dll
Normal file
Binary file not shown.
7
Runas/bin/Release/net6.0/Logs/2023-05-102023051006.log
Normal file
7
Runas/bin/Release/net6.0/Logs/2023-05-102023051006.log
Normal file
@@ -0,0 +1,7 @@
|
||||
2023-05-10 06:20:36.255 +03:00[Information] FL:False
|
||||
2023-05-10 06:20:36.255 +03:00[Information] AsusNbKeys:False
|
||||
2023-05-10 06:20:36.261 +03:00[Information] Lightshot:True
|
||||
2023-05-10 06:20:36.277 +03:00[Information] PowerToys:True
|
||||
2023-05-10 06:20:36.293 +03:00[Information] AutoHotKey:True
|
||||
2023-05-10 06:20:36.293 +03:00[Information] Ditto:True
|
||||
2023-05-10 06:20:36.294 +03:00[Information] HControl:False
|
Binary file not shown.
Binary file not shown.
BIN
Runas/bin/Release/net6.0/Microsoft.Extensions.Logging.dll
Normal file
BIN
Runas/bin/Release/net6.0/Microsoft.Extensions.Logging.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/Microsoft.Extensions.Options.dll
Normal file
BIN
Runas/bin/Release/net6.0/Microsoft.Extensions.Options.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/Microsoft.Extensions.Primitives.dll
Normal file
BIN
Runas/bin/Release/net6.0/Microsoft.Extensions.Primitives.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/Newtonsoft.Json.dll
Normal file
BIN
Runas/bin/Release/net6.0/Newtonsoft.Json.dll
Normal file
Binary file not shown.
229
Runas/bin/Release/net6.0/Runas.deps.json
Normal file
229
Runas/bin/Release/net6.0/Runas.deps.json
Normal file
@@ -0,0 +1,229 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"Runas/1.0.0": {
|
||||
"dependencies": {
|
||||
"Newtonsoft.Json": "13.0.2",
|
||||
"Serilog": "2.12.0",
|
||||
"Serilog.Enrichers.Environment": "2.2.0",
|
||||
"Serilog.Enrichers.Thread": "3.1.0",
|
||||
"Serilog.Extensions.Logging": "3.1.0",
|
||||
"Serilog.Sinks.File": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Runas.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging/2.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "2.0.0",
|
||||
"Microsoft.Extensions.Options": "2.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/2.0.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options/2.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
|
||||
"Microsoft.Extensions.Primitives": "2.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/2.0.0": {
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "4.4.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/13.0.2": {
|
||||
"runtime": {
|
||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||
"assemblyVersion": "13.0.0.0",
|
||||
"fileVersion": "13.0.2.27524"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog/2.12.0": {
|
||||
"runtime": {
|
||||
"lib/net6.0/Serilog.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.12.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog.Enrichers.Environment/2.2.0": {
|
||||
"dependencies": {
|
||||
"Serilog": "2.12.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Serilog.Enrichers.Environment.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.2.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog.Enrichers.Thread/3.1.0": {
|
||||
"dependencies": {
|
||||
"Serilog": "2.12.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Serilog.Enrichers.Thread.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "3.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog.Extensions.Logging/3.1.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Logging": "2.0.0",
|
||||
"Serilog": "2.12.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "3.1.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Serilog.Sinks.File/5.0.0": {
|
||||
"dependencies": {
|
||||
"Serilog": "2.12.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Serilog.Sinks.File.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/4.4.0": {}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Runas/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-eUdJ0Q/GfVyUJc0Jal5L1QZLceL78pvEM9wEKcHeI24KorqMDoVX+gWsMGLulQMfOwsUaPtkpQM2pFERTzSfSg==",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/2.0.0",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VP10syWV/vxYYMKgZ2eDESmUsz3gPxvBn5J6tkVN8lI4M+dF43RN8fWsEPbcAneDmZrHl3Pv23z05nmyGkJlpg==",
|
||||
"path": "microsoft.extensions.logging/2.0.0",
|
||||
"hashPath": "microsoft.extensions.logging.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-6ZCllUYGFukkymSTx3Yr0G/ajRxoNJp7/FqSxSB4fGISST54ifBhgu4Nc0ItGi3i6DqwuNd8SUyObmiC++AO2Q==",
|
||||
"path": "microsoft.extensions.logging.abstractions/2.0.0",
|
||||
"hashPath": "microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Options/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-sAKBgjl2gWsECBLLR9K54T7/uZaP2n9GhMYHay/oOLfvpvX0+iNAlQ2NJgVE352C9Fs5CDV3VbNTK8T2aNKQFA==",
|
||||
"path": "microsoft.extensions.options/2.0.0",
|
||||
"hashPath": "microsoft.extensions.options.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==",
|
||||
"path": "microsoft.extensions.primitives/2.0.0",
|
||||
"hashPath": "microsoft.extensions.primitives.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Newtonsoft.Json/13.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==",
|
||||
"path": "newtonsoft.json/13.0.2",
|
||||
"hashPath": "newtonsoft.json.13.0.2.nupkg.sha512"
|
||||
},
|
||||
"Serilog/2.12.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-xaiJLIdu6rYMKfQMYUZgTy8YK7SMZjB4Yk50C/u//Z4OsvxkUfSPJy4nknfvwAC34yr13q7kcyh4grbwhSxyZg==",
|
||||
"path": "serilog/2.12.0",
|
||||
"hashPath": "serilog.2.12.0.nupkg.sha512"
|
||||
},
|
||||
"Serilog.Enrichers.Environment/2.2.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-DMrj3A4l65kc4JouQyZjjFv7N58Y7lGsB81kSzorTwUGeI2wrTy7CVwSOfG90/Pcu/HV5bwGrUmxDZ38pON+5Q==",
|
||||
"path": "serilog.enrichers.environment/2.2.0",
|
||||
"hashPath": "serilog.enrichers.environment.2.2.0.nupkg.sha512"
|
||||
},
|
||||
"Serilog.Enrichers.Thread/3.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-85lWsGRJpRxvKT6j/H67no55SUBsBIvp556TKuBTGhjtoPeq+L7j/sDWbgAtvT0p7u7/phJyX6j35PQ4Vtqw0g==",
|
||||
"path": "serilog.enrichers.thread/3.1.0",
|
||||
"hashPath": "serilog.enrichers.thread.3.1.0.nupkg.sha512"
|
||||
},
|
||||
"Serilog.Extensions.Logging/3.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==",
|
||||
"path": "serilog.extensions.logging/3.1.0",
|
||||
"hashPath": "serilog.extensions.logging.3.1.0.nupkg.sha512"
|
||||
},
|
||||
"Serilog.Sinks.File/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
|
||||
"path": "serilog.sinks.file/5.0.0",
|
||||
"hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/4.4.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==",
|
||||
"path": "system.runtime.compilerservices.unsafe/4.4.0",
|
||||
"hashPath": "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
BIN
Runas/bin/Release/net6.0/Runas.dll
Normal file
BIN
Runas/bin/Release/net6.0/Runas.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/Runas.exe
Normal file
BIN
Runas/bin/Release/net6.0/Runas.exe
Normal file
Binary file not shown.
12
Runas/bin/Release/net6.0/Runas.runtimeconfig.json
Normal file
12
Runas/bin/Release/net6.0/Runas.runtimeconfig.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
|
||||
}
|
||||
}
|
||||
}
|
BIN
Runas/bin/Release/net6.0/Serilog.Enrichers.Environment.dll
Normal file
BIN
Runas/bin/Release/net6.0/Serilog.Enrichers.Environment.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/Serilog.Enrichers.Thread.dll
Normal file
BIN
Runas/bin/Release/net6.0/Serilog.Enrichers.Thread.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/Serilog.Extensions.Logging.dll
Normal file
BIN
Runas/bin/Release/net6.0/Serilog.Extensions.Logging.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/Serilog.Sinks.File.dll
Normal file
BIN
Runas/bin/Release/net6.0/Serilog.Sinks.File.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/Serilog.dll
Normal file
BIN
Runas/bin/Release/net6.0/Serilog.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/publish/win-x64/Runas.exe
Normal file
BIN
Runas/bin/Release/net6.0/publish/win-x64/Runas.exe
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/Microsoft.CSharp.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Microsoft.CSharp.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/Microsoft.VisualBasic.Core.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Microsoft.VisualBasic.Core.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/Microsoft.VisualBasic.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Microsoft.VisualBasic.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/Microsoft.Win32.Primitives.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Microsoft.Win32.Primitives.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/Microsoft.Win32.Registry.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Microsoft.Win32.Registry.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/Newtonsoft.Json.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Newtonsoft.Json.dll
Normal file
Binary file not shown.
1200
Runas/bin/Release/net6.0/win-x64/Runas.deps.json
Normal file
1200
Runas/bin/Release/net6.0/win-x64/Runas.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Runas/bin/Release/net6.0/win-x64/Runas.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Runas.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/Runas.exe
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Runas.exe
Normal file
Binary file not shown.
24
Runas/bin/Release/net6.0/win-x64/Runas.runtimeconfig.json
Normal file
24
Runas/bin/Release/net6.0/win-x64/Runas.runtimeconfig.json
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"includedFrameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.16"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"Microsoft.Extensions.DependencyInjection.VerifyOpenGenericServiceTrimmability": true,
|
||||
"System.ComponentModel.TypeConverter.EnableUnsafeBinaryFormatterInDesigntimeLicenseContextSerialization": false,
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||
"System.Resources.ResourceManager.AllowCustomResourceTypes": false,
|
||||
"System.Runtime.InteropServices.BuiltInComInterop.IsSupported": false,
|
||||
"System.Runtime.InteropServices.EnableConsumingManagedCodeFromNativeHosting": false,
|
||||
"System.Runtime.InteropServices.EnableCppCLIHostActivation": false,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false,
|
||||
"System.StartupHookProvider.IsSupported": false,
|
||||
"System.Threading.Thread.EnableAutoreleasePool": false,
|
||||
"System.Text.Encoding.EnableUnsafeUTF7Encoding": false
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/Serilog.Enrichers.Thread.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Serilog.Enrichers.Thread.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/Serilog.Extensions.Logging.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Serilog.Extensions.Logging.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/Serilog.Sinks.File.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Serilog.Sinks.File.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/Serilog.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/Serilog.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.AppContext.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.AppContext.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Buffers.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Buffers.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Collections.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Collections.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.ComponentModel.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.ComponentModel.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Configuration.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Configuration.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Console.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Console.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Core.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Core.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Data.Common.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Data.Common.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Data.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Data.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Diagnostics.Debug.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Diagnostics.Debug.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Diagnostics.Process.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Diagnostics.Process.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Diagnostics.Tools.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Diagnostics.Tools.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Diagnostics.Tracing.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Diagnostics.Tracing.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Drawing.Primitives.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Drawing.Primitives.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Drawing.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Drawing.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Dynamic.Runtime.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Dynamic.Runtime.dll
Normal file
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Formats.Asn1.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Formats.Asn1.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Runas/bin/Release/net6.0/win-x64/System.Globalization.dll
Normal file
BIN
Runas/bin/Release/net6.0/win-x64/System.Globalization.dll
Normal file
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user