diff --git a/.vs/Stone_Red-C-Sharp-Utilities/DesignTimeBuild/.dtbcache.v2 b/.vs/Stone_Red-C-Sharp-Utilities/DesignTimeBuild/.dtbcache.v2 index 97f625a..60c1a4c 100644 Binary files a/.vs/Stone_Red-C-Sharp-Utilities/DesignTimeBuild/.dtbcache.v2 and b/.vs/Stone_Red-C-Sharp-Utilities/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/Stone_Red-C-Sharp-Utilities/v16/.suo b/.vs/Stone_Red-C-Sharp-Utilities/v16/.suo index fd1b055..d35ce2c 100644 Binary files a/.vs/Stone_Red-C-Sharp-Utilities/v16/.suo and b/.vs/Stone_Red-C-Sharp-Utilities/v16/.suo differ diff --git a/README.md b/README.md index 07c714f..7c8db76 100644 --- a/README.md +++ b/README.md @@ -18,13 +18,13 @@ ## Namespaces -### Stone_Red_Utilities.ArrListExtentions +### Stone_Red_Utilities.CollectionExtentions #### Methods -* Print - * Description: Prints items of array - * Parameters: `this Array array`, `char delimiter`, `bool printToDebugConsole` +* Print\ + * Description: Prints items of an IEnumerable\ + * Parameters: `this IEnumerable collection`, `char delimiter`, `bool printToDebugConsole` * Example usage: ```cs @@ -38,22 +38,6 @@ str1; str2; str3 ``` -* Print\ - * Description: Prints items of list - * Parameters: `this List list`, `char delimiter`, `bool printToDebugConsole` - * Example usage: - - ```cs - List yourList = new() { 1.45, 6.24, 4.14 }; - yourList.Print(';'); - ``` - - * Output: - - ```text - 1.45; 6.24; 4.14 - ``` - * PrintTable\ * Description: Creates and prints table from 2D array * Parameters: `this T[,] array`, `TableStyle tableStyle` @@ -320,6 +304,105 @@ C://good/path ``` +* RemoveWhitespaces + * Description: Revoves all whitespaces from the specified string + * Parameters: `this string str` + * Example usage: + + ```cs + string str = "a b c"; + string result = str.RemoveWhitespaces(); + Console.WriteLine(result); + ``` + + * Output: + + ```text + abc + ``` + +* Reverse + * Description: Reverses the specified string + * Parameters: `this string str` + * Example usage: + + ```cs + string str = "em esrever"; + Console.WriteLine(str.Reverse()); + ``` + + * Output: + + ```text + reverse me + ``` + +### Stone_Red_Utilities.RandomExtentions + +#### Methods + +* NextItem + * Description: Returns an random item from the specified collection using the Random class + * Parameters: `this Random random`, `IEnumerable collection` + * Example usage: + + ```cs + string[] arr = { "test1", "test2", "test3" }; + Random rnd = new Random(); + string randomItem = rnd.NextItem(arr); + Console.WriteLine(randomItem); + ``` + + * Output (Will be random every time): + + ```text + test2 + ``` + +* NextBool + * Description: Returns a random bool using the "Random" class + * Parameters: `this Random random`, `IEnumerable collection` + * Example usage: + + ```cs + string[] arr = { "test1", "test2", "test3" }; + Random rnd = new Random(); + string randomItem = rnd.NextItem(arr); + Console.WriteLine(randomItem); + ``` + + * Output (Will be random every time): + + ```text + test2 + ``` + +* NextEnum\ + * Description: Returns a random bool using the "Random" class + * Parameters: `this Random random`, `IEnumerable collection` + * Example usage: + + ```cs + private enum MyEnum + { + a, + b, + c + } + + ... + + Random rnd = new Random(); + MyEnum randomItem = rnd.NextEnum(new MyEnum()); + Console.WriteLine(randomItem); + ``` + + * Output (Will be random every time): + + ```text + c + ``` + ### Stone_Red_Utilities.Logging #### Constructor diff --git a/Stone_Red-C-Sharp-Utilities-Test/Program.cs b/Stone_Red-C-Sharp-Utilities-Test/Program.cs new file mode 100644 index 0000000..366ef14 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/Program.cs @@ -0,0 +1,24 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Stone_Red_Utilities.RandomExtentions; + +namespace Stone_Red_C_Sharp_Utilities_Test +{ + internal class Program + { + private enum MyEnum + { + a, + b, + c + } + + private static void Main() + { + Random rnd = new Random(); + MyEnum randomItem = rnd.NextEnum(new MyEnum()); + Console.WriteLine(randomItem); + } + } +} \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities-Test/Stone_Red-C-Sharp-Utilities-Test.csproj b/Stone_Red-C-Sharp-Utilities-Test/Stone_Red-C-Sharp-Utilities-Test.csproj new file mode 100644 index 0000000..0aa3820 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/Stone_Red-C-Sharp-Utilities-Test.csproj @@ -0,0 +1,13 @@ + + + + Exe + net5.0 + Stone_Red_C_Sharp_Utilities_Test + + + + + + + diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.deps.json b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.deps.json new file mode 100644 index 0000000..1991157 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.deps.json @@ -0,0 +1,36 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "Stone_Red-C-Sharp-Utilities-Test/1.0.0": { + "dependencies": { + "Stone_Red-C-Sharp-Utilities": "1.0.2" + }, + "runtime": { + "Stone_Red-C-Sharp-Utilities-Test.dll": {} + } + }, + "Stone_Red-C-Sharp-Utilities/1.0.2": { + "runtime": { + "Stone_Red-C-Sharp-Utilities.dll": {} + } + } + } + }, + "libraries": { + "Stone_Red-C-Sharp-Utilities-Test/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Stone_Red-C-Sharp-Utilities/1.0.2": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll new file mode 100644 index 0000000..54c7c5e Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.exe b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.exe new file mode 100644 index 0000000..368cc8c Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.exe differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb new file mode 100644 index 0000000..e5f84df Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.dev.json b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.dev.json new file mode 100644 index 0000000..560c599 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.dev.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\David\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\David\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet" + ] + } +} \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.json b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities.dll b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities.dll new file mode 100644 index 0000000..79a68b3 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities.dll differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities.pdb b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities.pdb new file mode 100644 index 0000000..543c518 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities.pdb differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities.xml b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities.xml new file mode 100644 index 0000000..d73db80 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/Stone_Red-C-Sharp-Utilities.xml @@ -0,0 +1,339 @@ + + + + Stone_Red-C-Sharp-Utilities + + + + + Extentions + + + + + Sets value to true if input is true. If input is false the value will not change. + + + + + + + Sets value to false if input is false. If input is true the value will not change. + + + + + + + Converts bool to int. + + + + + + + Converts int to bool. + + + + + + + Table Style + + + + + The default representaion of the table + + + + + The minimal representation of the table + + + + + The alternative representaion of the table + + + + + The list representaion of the table + + + + + and Extentions + + + + + Prints all items of an + + + + + + + + Creates and prints table from 2D array + + + + + + + + Extentions + + + + + Writes the text representation of the specified object to the standard output stream. + + + + + + + Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream. + + + + + + + Suspends execution of the current method until the user presses a key + + + + + + + Specifies the severity of the log target. + + + + + Writes log to console + + + + + Writes log to debug console + + + + + Writes log to file + + + + + Writes log to console debug console and file + + + + + Specifies the severity of the log message. + + + + + Logs that contain the most detailed messages. + + + + + Logs that track the general flow of the application. + + + + + Logs that highlight an abnormal activity in the flow of execution. + + + + + Logs that highlight when the flow of execution is stopped due to a failure. + + + + + Logs that contain the most severe level of error. This type of error indicate that immediate attention may be required. + + + + + Class used for logging + + + + + Format that is used when logging to the console + + + + + Format that is used when logging to the debug console + + + + + Format that is used when logging to a file + + + + + Initializes the logger with the default format and a file path + + + + + + + + Log the message to the specified output + + + + + + + + + + + Log the message to the specified output if the condition is met + + + + + + + + + + + + Clears the log file + + + + + Extentions + + + + + Returns an random item from the specified using the class + + + + + Returns a random item from the specified + is + + + + Returns a random using the class + + + Returns or + is + + + + Returns a random item from the specified using the class + + + + + + + + + Extentions + + + + + Determines whether this instance and another specified object have the same value regardless of upper and lower case. + + + + + + + + Determines whether this instance and another specified object have the same value regardless of spaces. + + + + + + + + Determines whether this instance and another specified object have the same value regardless of upper and lower case and spaces. + + + + + + + + Removes all invalid chars from the specified + + + + + + + + Removes all invalid chars from the specified + + + + + + + + Truncates a to the specified length. + + + + + + + + Truncates a to the specified length. + + + + + + + + + Uses the correct newline defined for this environment. + + + + + + + Revoves all whitespaces from the specified + + + + + + + Reverses the specified + + + + + + diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll new file mode 100644 index 0000000..32685da Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Debug/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.deps.json b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.deps.json new file mode 100644 index 0000000..1991157 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.deps.json @@ -0,0 +1,36 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "Stone_Red-C-Sharp-Utilities-Test/1.0.0": { + "dependencies": { + "Stone_Red-C-Sharp-Utilities": "1.0.2" + }, + "runtime": { + "Stone_Red-C-Sharp-Utilities-Test.dll": {} + } + }, + "Stone_Red-C-Sharp-Utilities/1.0.2": { + "runtime": { + "Stone_Red-C-Sharp-Utilities.dll": {} + } + } + } + }, + "libraries": { + "Stone_Red-C-Sharp-Utilities-Test/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Stone_Red-C-Sharp-Utilities/1.0.2": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll new file mode 100644 index 0000000..f1a0d62 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.exe b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.exe new file mode 100644 index 0000000..368cc8c Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.exe differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb new file mode 100644 index 0000000..12f7447 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.dev.json b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.dev.json new file mode 100644 index 0000000..560c599 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.dev.json @@ -0,0 +1,10 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\David\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\David\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet" + ] + } +} \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.json b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities.dll b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities.dll new file mode 100644 index 0000000..f6b496b Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities.dll differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities.pdb b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities.pdb new file mode 100644 index 0000000..07d699b Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities.pdb differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities.xml b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities.xml new file mode 100644 index 0000000..d73db80 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/Stone_Red-C-Sharp-Utilities.xml @@ -0,0 +1,339 @@ + + + + Stone_Red-C-Sharp-Utilities + + + + + Extentions + + + + + Sets value to true if input is true. If input is false the value will not change. + + + + + + + Sets value to false if input is false. If input is true the value will not change. + + + + + + + Converts bool to int. + + + + + + + Converts int to bool. + + + + + + + Table Style + + + + + The default representaion of the table + + + + + The minimal representation of the table + + + + + The alternative representaion of the table + + + + + The list representaion of the table + + + + + and Extentions + + + + + Prints all items of an + + + + + + + + Creates and prints table from 2D array + + + + + + + + Extentions + + + + + Writes the text representation of the specified object to the standard output stream. + + + + + + + Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream. + + + + + + + Suspends execution of the current method until the user presses a key + + + + + + + Specifies the severity of the log target. + + + + + Writes log to console + + + + + Writes log to debug console + + + + + Writes log to file + + + + + Writes log to console debug console and file + + + + + Specifies the severity of the log message. + + + + + Logs that contain the most detailed messages. + + + + + Logs that track the general flow of the application. + + + + + Logs that highlight an abnormal activity in the flow of execution. + + + + + Logs that highlight when the flow of execution is stopped due to a failure. + + + + + Logs that contain the most severe level of error. This type of error indicate that immediate attention may be required. + + + + + Class used for logging + + + + + Format that is used when logging to the console + + + + + Format that is used when logging to the debug console + + + + + Format that is used when logging to a file + + + + + Initializes the logger with the default format and a file path + + + + + + + + Log the message to the specified output + + + + + + + + + + + Log the message to the specified output if the condition is met + + + + + + + + + + + + Clears the log file + + + + + Extentions + + + + + Returns an random item from the specified using the class + + + + + Returns a random item from the specified + is + + + + Returns a random using the class + + + Returns or + is + + + + Returns a random item from the specified using the class + + + + + + + + + Extentions + + + + + Determines whether this instance and another specified object have the same value regardless of upper and lower case. + + + + + + + + Determines whether this instance and another specified object have the same value regardless of spaces. + + + + + + + + Determines whether this instance and another specified object have the same value regardless of upper and lower case and spaces. + + + + + + + + Removes all invalid chars from the specified + + + + + + + + Removes all invalid chars from the specified + + + + + + + + Truncates a to the specified length. + + + + + + + + Truncates a to the specified length. + + + + + + + + + Uses the correct newline defined for this environment. + + + + + + + Revoves all whitespaces from the specified + + + + + + + Reverses the specified + + + + + + diff --git a/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll new file mode 100644 index 0000000..d9e191e Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/bin/Release/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfo.cs b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfo.cs new file mode 100644 index 0000000..21d3f31 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Stone_Red-C-Sharp-Utilities-Test")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Stone_Red-C-Sharp-Utilities-Test")] +[assembly: System.Reflection.AssemblyTitleAttribute("Stone_Red-C-Sharp-Utilities-Test")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfoInputs.cache b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfoInputs.cache new file mode 100644 index 0000000..a6829ea --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +42ae254ffb091349f3ca8cbbfdc4184a3296757d diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.GeneratedMSBuildEditorConfig.editorconfig b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.GeneratedMSBuildEditorConfig.editorconfig @@ -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 diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.assets.cache b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.assets.cache new file mode 100644 index 0000000..5ddb04c Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.assets.cache differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.CopyComplete b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.CoreCompileInputs.cache b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..bc3308f --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +3e6e32b5a238cce47f7aeb7589b17b45b34cb0fa diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.FileListAbsolute.txt b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..869fe97 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.FileListAbsolute.txt @@ -0,0 +1,20 @@ +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.exe +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.deps.json +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.json +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.dev.json +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.dll +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Debug\net5.0\ref\Stone_Red-C-Sharp-Utilities-Test.dll +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.pdb +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Debug\net5.0\Stone_Red-C-Sharp-Utilities.dll +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Debug\net5.0\Stone_Red-C-Sharp-Utilities.pdb +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Debug\net5.0\Stone_Red-C-Sharp-Utilities.xml +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.csprojAssemblyReference.cache +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.AssemblyInfoInputs.cache +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.AssemblyInfo.cs +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.csproj.CoreCompileInputs.cache +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.csproj.CopyComplete +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.dll +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Debug\net5.0\ref\Stone_Red-C-Sharp-Utilities-Test.dll +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.pdb +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Debug\net5.0\Stone_Red-C-Sharp-Utilities-Test.genruntimeconfig.cache diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.csprojAssemblyReference.cache b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.csprojAssemblyReference.cache new file mode 100644 index 0000000..ff8c186 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.csprojAssemblyReference.cache differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll new file mode 100644 index 0000000..54c7c5e Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.genruntimeconfig.cache b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.genruntimeconfig.cache new file mode 100644 index 0000000..c9f1b50 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.genruntimeconfig.cache @@ -0,0 +1 @@ +d8c70e80eb8e020766aa7f8073262ae63ee0a93c diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb new file mode 100644 index 0000000..e5f84df Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/apphost.exe b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/apphost.exe new file mode 100644 index 0000000..368cc8c Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/apphost.exe differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll new file mode 100644 index 0000000..32685da Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Debug/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfo.cs b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfo.cs new file mode 100644 index 0000000..7163063 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Stone_Red-C-Sharp-Utilities-Test")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Stone_Red-C-Sharp-Utilities-Test")] +[assembly: System.Reflection.AssemblyTitleAttribute("Stone_Red-C-Sharp-Utilities-Test")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfoInputs.cache b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b3d73c7 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +554b2b887e56c429ecf52b4043aa124fe55e2b96 diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.GeneratedMSBuildEditorConfig.editorconfig b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.GeneratedMSBuildEditorConfig.editorconfig @@ -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 diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.assets.cache b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.assets.cache new file mode 100644 index 0000000..1d107cb Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.assets.cache differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.CopyComplete b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.CoreCompileInputs.cache b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ddf0d35 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +bd88301ce8fb7aadd4b4649bbdcf209c9abd7ef1 diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.FileListAbsolute.txt b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..12e44d0 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.csproj.FileListAbsolute.txt @@ -0,0 +1,20 @@ +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.exe +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.deps.json +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.json +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.runtimeconfig.dev.json +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.dll +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Release\net5.0\ref\Stone_Red-C-Sharp-Utilities-Test.dll +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.pdb +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Release\net5.0\Stone_Red-C-Sharp-Utilities.dll +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Release\net5.0\Stone_Red-C-Sharp-Utilities.pdb +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\bin\Release\net5.0\Stone_Red-C-Sharp-Utilities.xml +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.csprojAssemblyReference.cache +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.AssemblyInfoInputs.cache +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.AssemblyInfo.cs +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.csproj.CoreCompileInputs.cache +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.csproj.CopyComplete +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.dll +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Release\net5.0\ref\Stone_Red-C-Sharp-Utilities-Test.dll +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.pdb +C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities-Test\obj\Release\net5.0\Stone_Red-C-Sharp-Utilities-Test.genruntimeconfig.cache diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.csprojAssemblyReference.cache b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.csprojAssemblyReference.cache new file mode 100644 index 0000000..ecc8c85 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.csprojAssemblyReference.cache differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll new file mode 100644 index 0000000..f1a0d62 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.dll differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.genruntimeconfig.cache b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.genruntimeconfig.cache new file mode 100644 index 0000000..c9f1b50 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.genruntimeconfig.cache @@ -0,0 +1 @@ +d8c70e80eb8e020766aa7f8073262ae63ee0a93c diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb new file mode 100644 index 0000000..12f7447 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/Stone_Red-C-Sharp-Utilities-Test.pdb differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/apphost.exe b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/apphost.exe new file mode 100644 index 0000000..368cc8c Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/apphost.exe differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll new file mode 100644 index 0000000..d9e191e Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities-Test/obj/Release/net5.0/ref/Stone_Red-C-Sharp-Utilities-Test.dll differ diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Stone_Red-C-Sharp-Utilities-Test.csproj.nuget.dgspec.json b/Stone_Red-C-Sharp-Utilities-Test/obj/Stone_Red-C-Sharp-Utilities-Test.csproj.nuget.dgspec.json new file mode 100644 index 0000000..3157a80 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Stone_Red-C-Sharp-Utilities-Test.csproj.nuget.dgspec.json @@ -0,0 +1,132 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities-Test\\Stone_Red-C-Sharp-Utilities-Test.csproj": {} + }, + "projects": { + "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities-Test\\Stone_Red-C-Sharp-Utilities-Test.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities-Test\\Stone_Red-C-Sharp-Utilities-Test.csproj", + "projectName": "Stone_Red-C-Sharp-Utilities-Test", + "projectPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities-Test\\Stone_Red-C-Sharp-Utilities-Test.csproj", + "packagesPath": "C:\\Users\\David\\.nuget\\packages\\", + "outputPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities-Test\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" + ], + "configFilePaths": [ + "C:\\Users\\David\\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", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.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": { + "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities.csproj": { + "projectPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities.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.202\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities.csproj": { + "version": "1.0.2", + "restore": { + "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities.csproj", + "projectName": "Stone_Red-C-Sharp-Utilities", + "projectPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities.csproj", + "packagesPath": "C:\\Users\\David\\.nuget\\packages\\", + "outputPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" + ], + "configFilePaths": [ + "C:\\Users\\David\\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", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config" + ], + "originalTargetFrameworks": [ + "netstandard2.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "NETStandard.Library": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Stone_Red-C-Sharp-Utilities-Test.csproj.nuget.g.props b/Stone_Red-C-Sharp-Utilities-Test/obj/Stone_Red-C-Sharp-Utilities-Test.csproj.nuget.g.props new file mode 100644 index 0000000..84dcedc --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Stone_Red-C-Sharp-Utilities-Test.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\David\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\ + PackageReference + 5.9.1 + + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/Stone_Red-C-Sharp-Utilities-Test.csproj.nuget.g.targets b/Stone_Red-C-Sharp-Utilities-Test/obj/Stone_Red-C-Sharp-Utilities-Test.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/Stone_Red-C-Sharp-Utilities-Test.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/project.assets.json b/Stone_Red-C-Sharp-Utilities-Test/obj/project.assets.json new file mode 100644 index 0000000..a402eb0 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/project.assets.json @@ -0,0 +1,98 @@ +{ + "version": 3, + "targets": { + "net5.0": { + "Stone_Red-C-Sharp-Utilities/1.0.2": { + "type": "project", + "framework": ".NETStandard,Version=v2.1", + "compile": { + "bin/placeholder/Stone_Red-C-Sharp-Utilities.dll": {} + }, + "runtime": { + "bin/placeholder/Stone_Red-C-Sharp-Utilities.dll": {} + } + } + } + }, + "libraries": { + "Stone_Red-C-Sharp-Utilities/1.0.2": { + "type": "project", + "path": "../Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.csproj", + "msbuildProject": "../Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.csproj" + } + }, + "projectFileDependencyGroups": { + "net5.0": [ + "Stone_Red-C-Sharp-Utilities >= 1.0.2" + ] + }, + "packageFolders": { + "C:\\Users\\David\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}, + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities-Test\\Stone_Red-C-Sharp-Utilities-Test.csproj", + "projectName": "Stone_Red-C-Sharp-Utilities-Test", + "projectPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities-Test\\Stone_Red-C-Sharp-Utilities-Test.csproj", + "packagesPath": "C:\\Users\\David\\.nuget\\packages\\", + "outputPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities-Test\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages", + "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\" + ], + "configFilePaths": [ + "C:\\Users\\David\\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", + "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.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": { + "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities.csproj": { + "projectPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities.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.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities-Test/obj/project.nuget.cache b/Stone_Red-C-Sharp-Utilities-Test/obj/project.nuget.cache new file mode 100644 index 0000000..c05b3ac --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities-Test/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "OE733x2kCFUFigdEryLyPpVY2ngQ6/PQDu7juyoQHwLLTXM7YAGkcsOPZ/6G+ZWn2UFomAhpve/dSa8BSDzhAA==", + "success": true, + "projectFilePath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities-Test\\Stone_Red-C-Sharp-Utilities-Test.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities.sln b/Stone_Red-C-Sharp-Utilities.sln index 80462a8..3162a66 100644 --- a/Stone_Red-C-Sharp-Utilities.sln +++ b/Stone_Red-C-Sharp-Utilities.sln @@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.31019.35 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stone_Red-C-Sharp-Utilities", "Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities.csproj", "{6765093D-4C7B-4E55-A46C-A4621287E91D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Stone_Red-C-Sharp-Utilities", "Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities.csproj", "{6765093D-4C7B-4E55-A46C-A4621287E91D}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stone_Red-C-Sharp-Utilities-Test", "Stone_Red-C-Sharp-Utilities-Test\Stone_Red-C-Sharp-Utilities-Test.csproj", "{673DAE9F-D54B-41AA-8B7E-F87A1D5D2F56}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -15,6 +17,10 @@ Global {6765093D-4C7B-4E55-A46C-A4621287E91D}.Debug|Any CPU.Build.0 = Debug|Any CPU {6765093D-4C7B-4E55-A46C-A4621287E91D}.Release|Any CPU.ActiveCfg = Release|Any CPU {6765093D-4C7B-4E55-A46C-A4621287E91D}.Release|Any CPU.Build.0 = Release|Any CPU + {673DAE9F-D54B-41AA-8B7E-F87A1D5D2F56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {673DAE9F-D54B-41AA-8B7E-F87A1D5D2F56}.Debug|Any CPU.Build.0 = Debug|Any CPU + {673DAE9F-D54B-41AA-8B7E-F87A1D5D2F56}.Release|Any CPU.ActiveCfg = Release|Any CPU + {673DAE9F-D54B-41AA-8B7E-F87A1D5D2F56}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Stone_Red-C-Sharp-Utilities/ArrListExtentions.cs b/Stone_Red-C-Sharp-Utilities/CollectionExtentions.cs similarity index 66% rename from Stone_Red-C-Sharp-Utilities/ArrListExtentions.cs rename to Stone_Red-C-Sharp-Utilities/CollectionExtentions.cs index bceba03..909d241 100644 --- a/Stone_Red-C-Sharp-Utilities/ArrListExtentions.cs +++ b/Stone_Red-C-Sharp-Utilities/CollectionExtentions.cs @@ -1,8 +1,9 @@ using System; using System.Collections.Generic; using System.Diagnostics; +using System.Linq; -namespace Stone_Red_Utilities.ArrListExtentions +namespace Stone_Red_Utilities.CollectionExtentions { /// /// Table Style @@ -31,65 +32,34 @@ namespace Stone_Red_Utilities.ArrListExtentions } /// - /// and Extentions + /// and Extentions /// - public static class ArrayListExt + public static class CollectionExt { /// - /// Prints items of array - /// - /// - /// - /// - public static void Print(this Array array, char delimiter = ',', bool printToDebugConsole = false) - { - int i = 0; - string split = delimiter + (delimiter == '\n' ? string.Empty : " "); - foreach (var item in array) - { - if (item is Array arr) - { - arr.Print(delimiter, printToDebugConsole); - } - else if (printToDebugConsole) - { - Debug.Write(item.ToString() + (i < array.Length - 1 ? split : string.Empty)); - } - else - { - Console.Write(item.ToString() + (i < array.Length - 1 ? split : string.Empty)); - } - i++; - } - } - - /// - /// Prints items of list + /// Prints all items of an /// /// /// /// - public static void Print(this List list, char delimiter = ',', bool printToDebugConsole = false) + public static void Print(this IEnumerable collection, char delimiter = ',', bool printToDebugConsole = false) { int i = 0; + int length = collection.Count() - 1; string split = delimiter + (delimiter == '\n' ? string.Empty : " "); - foreach (var item in list) + foreach (var item in collection) { - if (item is Array arr) + if (item is IEnumerable ie) { - arr.Print(delimiter, printToDebugConsole); - } - else if (item is List ls) - { - ls.Print(delimiter, printToDebugConsole); + ie.Print(delimiter, printToDebugConsole); } else if (printToDebugConsole) { - Debug.Write(item.ToString() + (i < list.Count - 1 ? split : string.Empty)); + Debug.Write(item.ToString() + (i < length - 1 ? split : string.Empty)); } else { - Console.Write(item.ToString() + (i < list.Count - 1 ? split : string.Empty)); + Console.Write(item.ToString() + (i < length - 1 ? split : string.Empty)); } i++; } @@ -115,6 +85,7 @@ namespace Stone_Red_Utilities.ArrListExtentions } PrintLine(tableStyle, itemLength, array.GetLength(1), tableStyle == TableStyle.List); + for (int i = 0; i < array.GetLength(0); i++) { for (int j = 0; j < array.GetLength(1); j++) diff --git a/Stone_Red-C-Sharp-Utilities/ConsoleExtentions.cs b/Stone_Red-C-Sharp-Utilities/ConsoleExtentions.cs index 9a23299..783395e 100644 --- a/Stone_Red-C-Sharp-Utilities/ConsoleExtentions.cs +++ b/Stone_Red-C-Sharp-Utilities/ConsoleExtentions.cs @@ -3,7 +3,7 @@ namespace Stone_Red_Utilities.ConsoleExtentions { /// - /// Console Extentions + /// Extentions /// public static class ConsoleExt { @@ -40,7 +40,7 @@ namespace Stone_Red_Utilities.ConsoleExtentions } /// - /// Suspends execution until the user presses a key + /// Suspends execution of the current method until the user presses a key /// /// /// diff --git a/Stone_Red-C-Sharp-Utilities/RandomExtentions.cs b/Stone_Red-C-Sharp-Utilities/RandomExtentions.cs new file mode 100644 index 0000000..50d9bc8 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities/RandomExtentions.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Linq; + +namespace Stone_Red_Utilities.RandomExtentions +{ + /// + /// Extentions + /// + public static class RandomExt + { + /// + /// Returns an random item from the specified using the class + /// + /// + /// + /// + /// Returns a random item from the specified + /// is + public static T NextItem(this Random random, IEnumerable collection) + { + if (collection is null) + { + throw new ArgumentNullException(nameof(collection)); + } + + T[] items = collection.ToArray(); + return items[random.Next(items.Length)]; + } + + /// + /// Returns a random using the class + /// + /// + /// Returns or + /// is + public static bool NextBool(this Random random) + { + return random.Next(2) == 0; + } + + /// + /// Returns a random item from the specified using the class + /// + /// + /// + /// + /// + public static T NextEnum(this Random random, T _) where T : Enum //Not the best solution but it works + { + Array arr = Enum.GetValues(typeof(T)); + return (T)arr.GetValue(random.Next(arr.Length)); + } + } +} \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.csproj b/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.csproj index 9e54851..f961cf5 100644 --- a/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.csproj +++ b/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.csproj @@ -1,4 +1,4 @@ - + netstandard2.1 @@ -12,9 +12,9 @@ en LICENSE false - 1.0.1.2 - 1.0.1.2 - 1.0.1.2 + 1.0.2.0 + 1.0.2.0 + 1.0.2.0 @@ -31,5 +31,4 @@ - - + \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.xml b/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.xml index e8cf7be..d73db80 100644 --- a/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.xml +++ b/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.xml @@ -4,60 +4,6 @@ Stone_Red-C-Sharp-Utilities - - - Table Style - - - - - The default representaion of the table - - - - - The minimal representation of the table - - - - - The alternative representaion of the table - - - - - The list representaion of the table - - - - - and Extentions - - - - - Prints items of array - - - - - - - - Prints items of list - - - - - - - - Creates and prints table from 2D array - - - - - Extentions @@ -86,14 +32,60 @@ - Converts bool to int. + Converts int to bool. + - + + + + Table Style + + + + + The default representaion of the table + + + + + The minimal representation of the table + + + + + The alternative representaion of the table + + + + + The list representaion of the table + + + + + and Extentions + + + + + Prints all items of an + + + + + + + + Creates and prints table from 2D array + + + + - Console Extentions + Extentions @@ -112,7 +104,7 @@ - Suspends execution until the user presses a key + Suspends execution of the current method until the user presses a key @@ -228,6 +220,38 @@ Clears the log file + + + Extentions + + + + + Returns an random item from the specified using the class + + + + + Returns a random item from the specified + is + + + + Returns a random using the class + + + Returns or + is + + + + Returns a random item from the specified using the class + + + + + + Extentions @@ -259,7 +283,7 @@ - Removes all invalid chars from the specified string + Removes all invalid chars from the specified @@ -267,7 +291,7 @@ - Removes all invalid chars from the specified string + Removes all invalid chars from the specified @@ -275,7 +299,7 @@ - Truncates a string to the specified length. + Truncates a to the specified length. @@ -283,7 +307,7 @@ - Truncates a string to the specified length. + Truncates a to the specified length. @@ -292,7 +316,21 @@ - Uses the correct newline string defined for this environment. + Uses the correct newline defined for this environment. + + + + + + + Revoves all whitespaces from the specified + + + + + + + Reverses the specified diff --git a/Stone_Red-C-Sharp-Utilities/StringExtentions.cs b/Stone_Red-C-Sharp-Utilities/StringExtentions.cs index 98b09a4..6f7e31a 100644 --- a/Stone_Red-C-Sharp-Utilities/StringExtentions.cs +++ b/Stone_Red-C-Sharp-Utilities/StringExtentions.cs @@ -12,7 +12,7 @@ namespace Stone_Red_Utilities.StringExtentions public static class StringExt { /// - /// Determines whether this instance and another specified object have the same value regardless of upper and lower case. + /// Determines whether this instance and another specified object have the same value regardless of upper and lower case. /// /// /// @@ -23,7 +23,7 @@ namespace Stone_Red_Utilities.StringExtentions } /// - /// Determines whether this instance and another specified object have the same value regardless of spaces. + /// Determines whether this instance and another specified object have the same value regardless of spaces. /// /// /// @@ -34,7 +34,7 @@ namespace Stone_Red_Utilities.StringExtentions } /// - /// Determines whether this instance and another specified object have the same value regardless of upper and lower case and spaces. + /// Determines whether this instance and another specified object have the same value regardless of upper and lower case and spaces. /// /// /// @@ -45,7 +45,7 @@ namespace Stone_Red_Utilities.StringExtentions } /// - /// Removes all invalid chars from the specified string + /// Removes all invalid chars from the specified /// /// /// @@ -78,7 +78,7 @@ namespace Stone_Red_Utilities.StringExtentions } /// - /// Removes all invalid chars from the specified string + /// Removes all invalid chars from the specified /// /// /// @@ -111,7 +111,7 @@ namespace Stone_Red_Utilities.StringExtentions } /// - /// Truncates a string to the specified length. + /// Truncates a to the specified length. /// /// /// @@ -125,7 +125,7 @@ namespace Stone_Red_Utilities.StringExtentions } /// - /// Truncates a string to the specified length. + /// Truncates a to the specified length. /// /// /// @@ -147,7 +147,7 @@ namespace Stone_Red_Utilities.StringExtentions } /// - /// Uses the correct newline string defined for this environment. + /// Uses the correct newline defined for this environment. /// /// /// @@ -160,5 +160,33 @@ namespace Stone_Red_Utilities.StringExtentions return str; } + + /// + /// Revoves all whitespaces from the specified + /// + /// + /// + public static string RemoveWhitespaces(this string str) + { + StringBuilder result = new StringBuilder(); + foreach (char c in str) + { + if (!char.IsWhiteSpace(c)) + result.Append(c); + } + return result.ToString(); + } + + /// + /// Reverses the specified + /// + /// + /// + public static string Reverse(this string str) + { + char[] array = str.ToCharArray(); + Array.Reverse(array); + return new string(array); + } } } \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.2.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.2.nupkg new file mode 100644 index 0000000..cf8261c Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.2.nupkg differ diff --git a/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.2.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.2.nupkg new file mode 100644 index 0000000..4c631d1 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.2.nupkg differ diff --git a/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.deps.json b/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.deps.json index f993230..1a7d0df 100644 --- a/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.deps.json +++ b/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.deps.json @@ -7,7 +7,7 @@ "targets": { ".NETStandard,Version=v2.1": {}, ".NETStandard,Version=v2.1/": { - "Stone_Red-C-Sharp-Utilities/1.0.1.1": { + "Stone_Red-C-Sharp-Utilities/1.0.2.0": { "runtime": { "Stone_Red-C-Sharp-Utilities.dll": {} } @@ -15,7 +15,7 @@ } }, "libraries": { - "Stone_Red-C-Sharp-Utilities/1.0.1.1": { + "Stone_Red-C-Sharp-Utilities/1.0.2.0": { "type": "project", "serviceable": false, "sha512": "" diff --git a/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll b/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll index 2395d0c..79a68b3 100644 Binary files a/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll and b/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll differ diff --git a/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb b/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb index 067e7e5..543c518 100644 Binary files a/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb and b/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb differ diff --git a/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.xml b/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.xml index 3fcfbdc..d73db80 100644 --- a/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.xml +++ b/Stone_Red-C-Sharp-Utilities/bin/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.xml @@ -4,60 +4,6 @@ Stone_Red-C-Sharp-Utilities - - - Table Style - - - - - The default representaion of the table - - - - - The minimal representation of the table - - - - - The alternative representaion of the table - - - - - The list representaion of the table - - - - - and Extentions - - - - - Prints items of array - - - - - - - - Prints items of list - - - - - - - - Creates and prints table from 2D array - - - - - Extentions @@ -77,9 +23,69 @@ + + + Converts bool to int. + + + + + + + Converts int to bool. + + + + + + + Table Style + + + + + The default representaion of the table + + + + + The minimal representation of the table + + + + + The alternative representaion of the table + + + + + The list representaion of the table + + + + + and Extentions + + + + + Prints all items of an + + + + + + + + Creates and prints table from 2D array + + + + + - Console Extentions + Extentions @@ -98,7 +104,7 @@ - Suspends execution until the user presses a key + Suspends execution of the current method until the user presses a key @@ -214,6 +220,38 @@ Clears the log file + + + Extentions + + + + + Returns an random item from the specified using the class + + + + + Returns a random item from the specified + is + + + + Returns a random using the class + + + Returns or + is + + + + Returns a random item from the specified using the class + + + + + + Extentions @@ -245,7 +283,15 @@ - Removes all invalid chars from file name + Removes all invalid chars from the specified + + + + + + + + Removes all invalid chars from the specified @@ -253,7 +299,7 @@ - Truncates a string to the specified length. + Truncates a to the specified length. @@ -261,12 +307,33 @@ - Truncates a string to the specified length. + Truncates a to the specified length. + + + Uses the correct newline defined for this environment. + + + + + + + Revoves all whitespaces from the specified + + + + + + + Reverses the specified + + + + diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.2.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.2.nupkg deleted file mode 100644 index 562dc50..0000000 Binary files a/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.2.nupkg and /dev/null differ diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.2.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.2.nupkg new file mode 100644 index 0000000..9c7532d Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.2.nupkg differ diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.deps.json b/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.deps.json index b02a640..1a7d0df 100644 --- a/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.deps.json +++ b/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.deps.json @@ -7,7 +7,7 @@ "targets": { ".NETStandard,Version=v2.1": {}, ".NETStandard,Version=v2.1/": { - "Stone_Red-C-Sharp-Utilities/1.0.1.2": { + "Stone_Red-C-Sharp-Utilities/1.0.2.0": { "runtime": { "Stone_Red-C-Sharp-Utilities.dll": {} } @@ -15,7 +15,7 @@ } }, "libraries": { - "Stone_Red-C-Sharp-Utilities/1.0.1.2": { + "Stone_Red-C-Sharp-Utilities/1.0.2.0": { "type": "project", "serviceable": false, "sha512": "" diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll b/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll index e30c258..f6b496b 100644 Binary files a/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll and b/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll differ diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb b/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb index 6a4bda6..07d699b 100644 Binary files a/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb and b/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb differ diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.xml b/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.xml index e8cf7be..d73db80 100644 --- a/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.xml +++ b/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.xml @@ -4,60 +4,6 @@ Stone_Red-C-Sharp-Utilities - - - Table Style - - - - - The default representaion of the table - - - - - The minimal representation of the table - - - - - The alternative representaion of the table - - - - - The list representaion of the table - - - - - and Extentions - - - - - Prints items of array - - - - - - - - Prints items of list - - - - - - - - Creates and prints table from 2D array - - - - - Extentions @@ -86,14 +32,60 @@ - Converts bool to int. + Converts int to bool. + - + + + + Table Style + + + + + The default representaion of the table + + + + + The minimal representation of the table + + + + + The alternative representaion of the table + + + + + The list representaion of the table + + + + + and Extentions + + + + + Prints all items of an + + + + + + + + Creates and prints table from 2D array + + + + - Console Extentions + Extentions @@ -112,7 +104,7 @@ - Suspends execution until the user presses a key + Suspends execution of the current method until the user presses a key @@ -228,6 +220,38 @@ Clears the log file + + + Extentions + + + + + Returns an random item from the specified using the class + + + + + Returns a random item from the specified + is + + + + Returns a random using the class + + + Returns or + is + + + + Returns a random item from the specified using the class + + + + + + Extentions @@ -259,7 +283,7 @@ - Removes all invalid chars from the specified string + Removes all invalid chars from the specified @@ -267,7 +291,7 @@ - Removes all invalid chars from the specified string + Removes all invalid chars from the specified @@ -275,7 +299,7 @@ - Truncates a string to the specified length. + Truncates a to the specified length. @@ -283,7 +307,7 @@ - Truncates a string to the specified length. + Truncates a to the specified length. @@ -292,7 +316,21 @@ - Uses the correct newline string defined for this environment. + Uses the correct newline defined for this environment. + + + + + + + Revoves all whitespaces from the specified + + + + + + + Reverses the specified diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.2.nuspec b/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.2.nuspec new file mode 100644 index 0000000..f09a41b --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.2.nuspec @@ -0,0 +1,22 @@ + + + + Stone_Red-C-Sharp-Utilities + 1.0.1.2 + Stone_Red + false + LICENSE + https://aka.ms/deprecateLicenseUrl + Adds useful methods + ExtensionMethods, Methods, Extention, Console, Table, Print, C# + + + + + + + + + + + \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.2.nuspec b/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.2.nuspec new file mode 100644 index 0000000..1c2b4f9 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.2.nuspec @@ -0,0 +1,22 @@ + + + + Stone_Red-C-Sharp-Utilities + 1.0.2 + Stone_Red + false + LICENSE + https://aka.ms/deprecateLicenseUrl + Adds useful methods + ExtensionMethods, Methods, Extention, Console, Table, Print, C# + + + + + + + + + + + \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs index 1eeedc6..f7edad1 100644 --- a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs +++ b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs @@ -14,11 +14,11 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Stone_Red")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyDescriptionAttribute("Adds useful methods")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1.1")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1.1")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.2.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.2.0")] [assembly: System.Reflection.AssemblyProductAttribute("Stone_Red-C-Sharp-Utilities")] [assembly: System.Reflection.AssemblyTitleAttribute("Stone_Red-C-Sharp-Utilities")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.1.1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.2.0")] [assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/Stone-Red-Code/Stone_Red-C-Sharp-Utilities")] [assembly: System.Resources.NeutralResourcesLanguageAttribute("en")] diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfoInputs.cache b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfoInputs.cache index f78619b..a76f895 100644 --- a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfoInputs.cache +++ b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfoInputs.cache @@ -1 +1 @@ -a3dcfdd1a37a276a89a7dc6e510a1e222a45e18c +ea6ef826f39150eace08005921640b734848a705 diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.assets.cache b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.assets.cache index a0bdbf7..0b26e0c 100644 Binary files a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.assets.cache and b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.assets.cache differ diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.CoreCompileInputs.cache b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.CoreCompileInputs.cache index 0b2c38d..7b46bbb 100644 --- a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.CoreCompileInputs.cache +++ b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -5da8ee29e757543d794f5481de018812db6a323f +6deaaecbe153b73cd69e5aef5c8f7411fc6a1d64 diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.csprojAssemblyReference.cache b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.csprojAssemblyReference.cache index 1357f02..ad113ae 100644 Binary files a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.csprojAssemblyReference.cache and b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.csprojAssemblyReference.cache differ diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll index 2395d0c..79a68b3 100644 Binary files a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll and b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll differ diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb index 067e7e5..543c518 100644 Binary files a/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb and b/Stone_Red-C-Sharp-Utilities/obj/Debug/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb differ diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.2.nuspec b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.2.nuspec index e298d81..abc921f 100644 --- a/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.2.nuspec +++ b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.2.nuspec @@ -7,8 +7,8 @@ false LICENSE https://aka.ms/deprecateLicenseUrl - Adds useful extentions. - Console, Table, Print + Adds useful methods + ExtensionMethods, Methods, Extention, Console, Table, Print, C# diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs index b9d704b..bd1455f 100644 --- a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs +++ b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs @@ -14,11 +14,11 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Stone_Red")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyDescriptionAttribute("Adds useful methods")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1.2")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1.2")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.2.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.2.0")] [assembly: System.Reflection.AssemblyProductAttribute("Stone_Red-C-Sharp-Utilities")] [assembly: System.Reflection.AssemblyTitleAttribute("Stone_Red-C-Sharp-Utilities")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.1.2")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.2.0")] [assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/Stone-Red-Code/Stone_Red-C-Sharp-Utilities")] [assembly: System.Resources.NeutralResourcesLanguageAttribute("en")] diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfoInputs.cache b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfoInputs.cache index c44df1d..21c8eb6 100644 --- a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfoInputs.cache +++ b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfoInputs.cache @@ -1 +1 @@ -79d53500d0cda912836247a99f43baf59dc39d8e +aa0cd71b478a5f28a31162c6216cbaa1e9fee208 diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.CoreCompileInputs.cache b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.CoreCompileInputs.cache index ef0e52b..44be088 100644 --- a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.CoreCompileInputs.cache +++ b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -ab7c68485a41e4caec8918d8132b9a5c789193c3 +f0f0f7765de7b51881bd79150dfdfa528122c41c diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csprojAssemblyReference.cache b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csprojAssemblyReference.cache index be906f3..b95cd75 100644 Binary files a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csprojAssemblyReference.cache and b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csprojAssemblyReference.cache differ diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll index e30c258..f6b496b 100644 Binary files a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll and b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.dll differ diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb index 6a4bda6..07d699b 100644 Binary files a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb and b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.pdb differ diff --git a/Stone_Red-C-Sharp-Utilities/obj/Stone_Red-C-Sharp-Utilities.csproj.nuget.dgspec.json b/Stone_Red-C-Sharp-Utilities/obj/Stone_Red-C-Sharp-Utilities.csproj.nuget.dgspec.json index ccf734b..df557b5 100644 --- a/Stone_Red-C-Sharp-Utilities/obj/Stone_Red-C-Sharp-Utilities.csproj.nuget.dgspec.json +++ b/Stone_Red-C-Sharp-Utilities/obj/Stone_Red-C-Sharp-Utilities.csproj.nuget.dgspec.json @@ -5,7 +5,7 @@ }, "projects": { "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities.csproj": { - "version": "1.0.1.2", + "version": "1.0.2", "restore": { "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities.csproj", "projectName": "Stone_Red-C-Sharp-Utilities", diff --git a/Stone_Red-C-Sharp-Utilities/obj/project.assets.json b/Stone_Red-C-Sharp-Utilities/obj/project.assets.json index 475052e..4581ef8 100644 --- a/Stone_Red-C-Sharp-Utilities/obj/project.assets.json +++ b/Stone_Red-C-Sharp-Utilities/obj/project.assets.json @@ -13,7 +13,7 @@ "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {} }, "project": { - "version": "1.0.1.2", + "version": "1.0.2", "restore": { "projectUniqueName": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities.csproj", "projectName": "Stone_Red-C-Sharp-Utilities", diff --git a/Stone_Red-C-Sharp-Utilities/obj/project.nuget.cache b/Stone_Red-C-Sharp-Utilities/obj/project.nuget.cache index e03bb2a..1387ae9 100644 --- a/Stone_Red-C-Sharp-Utilities/obj/project.nuget.cache +++ b/Stone_Red-C-Sharp-Utilities/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "W2mmaVJ9QVB/ybXqInWb/ntCpfIusOdp99Jf4Ov7013vN7WF0Qb5g4C67ENTi26kCRu7OFGJrygEmUHgRu1v0Q==", + "dgSpecHash": "oqE7ytXXja7A4X19FPYpIr24r8pTIwmMGySP3aKQeXhtnb8nPOvjS80bdEo7RyZVR7zhzO5YS/7coM1Q8pxexA==", "success": true, "projectFilePath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities.csproj", "expectedPackageFiles": [],