mirror of
https://github.com/Stone-Red-Code/Stone_Red-C-Sharp-Utilities.git
synced 2026-09-09 01:45:58 +02:00
Added random class
Added random class, new string extension methods and updated the XAML documentation.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<RootNamespace>Stone_Red_C_Sharp_Utilities_Test</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
+36
@@ -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": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+10
@@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
+9
@@ -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.
@@ -0,0 +1,339 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Stone_Red-C-Sharp-Utilities</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Stone_Red_Utilities.BoolExtentions.BoolExt">
|
||||
<summary>
|
||||
<see cref="T:System.Boolean"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.OneWayTrue(System.Boolean@,System.Boolean)">
|
||||
<summary>
|
||||
Sets value to true if input is true. If input is false the value will not change.
|
||||
</summary>
|
||||
<param name="bol"></param>
|
||||
<param name="input"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.OneWayFalse(System.Boolean@,System.Boolean)">
|
||||
<summary>
|
||||
Sets value to false if input is false. If input is true the value will not change.
|
||||
</summary>
|
||||
<param name="bol"></param>
|
||||
<param name="input"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.ToInt(System.Boolean)">
|
||||
<summary>
|
||||
Converts bool to int.
|
||||
</summary>
|
||||
<param name="input"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.FromInt(System.Boolean@,System.Int32)">
|
||||
<summary>
|
||||
Converts int to bool.
|
||||
</summary>
|
||||
<param name="bol"></param>
|
||||
<param name="input"></param>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.CollectionExtentions.TableStyle">
|
||||
<summary>
|
||||
Table Style
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Default">
|
||||
<summary>
|
||||
The default representaion of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Minimum">
|
||||
<summary>
|
||||
The minimal representation of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Alternative">
|
||||
<summary>
|
||||
The alternative representaion of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.List">
|
||||
<summary>
|
||||
The list representaion of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.CollectionExtentions.CollectionExt">
|
||||
<summary>
|
||||
<see cref="T:System.Collections.Generic.IEnumerable`1"/> and <see cref="T:System.Array"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.CollectionExtentions.CollectionExt.Print``1(System.Collections.Generic.IEnumerable{``0},System.Char,System.Boolean)">
|
||||
<summary>
|
||||
Prints all items of an <see cref="T:System.Collections.Generic.IEnumerable`1"/>
|
||||
</summary>
|
||||
<param name="list"></param>
|
||||
<param name="delimiter"></param>
|
||||
<param name="printToDebugConsole"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.CollectionExtentions.CollectionExt.PrintTable``1(``0[0:,0:],Stone_Red_Utilities.CollectionExtentions.TableStyle)">
|
||||
<summary>
|
||||
Creates and prints table from 2D array
|
||||
</summary>
|
||||
<typeparam name="T"></typeparam>
|
||||
<param name="array"></param>
|
||||
<param name="tableStyle"></param>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt">
|
||||
<summary>
|
||||
<see cref="T:System.Console"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.Write(System.Object,System.ConsoleColor)">
|
||||
<summary>
|
||||
Writes the text representation of the specified object to the standard output stream.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="color"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.WriteLine(System.Object,System.ConsoleColor)">
|
||||
<summary>
|
||||
Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="color"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.Pause(System.Boolean,System.String)">
|
||||
<summary>
|
||||
Suspends execution of the current method until the user presses a key
|
||||
</summary>
|
||||
<param name="enterKeyOnly"></param>
|
||||
<param name="customMessage"></param>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.Logging.LogTarget">
|
||||
<summary>
|
||||
Specifies the severity of the log target.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.Console">
|
||||
<summary>
|
||||
Writes log to console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.DebugConsole">
|
||||
<summary>
|
||||
Writes log to debug console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.File">
|
||||
<summary>
|
||||
Writes log to file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.All">
|
||||
<summary>
|
||||
Writes log to console debug console and file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.Logging.LogSeverity">
|
||||
<summary>
|
||||
Specifies the severity of the log message.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Debug">
|
||||
<summary>
|
||||
Logs that contain the most detailed messages.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Info">
|
||||
<summary>
|
||||
Logs that track the general flow of the application.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Warning">
|
||||
<summary>
|
||||
Logs that highlight an abnormal activity in the flow of execution.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Error">
|
||||
<summary>
|
||||
Logs that highlight when the flow of execution is stopped due to a failure.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Fatal">
|
||||
<summary>
|
||||
Logs that contain the most severe level of error. This type of error indicate that immediate attention may be required.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.Logging.Logger">
|
||||
<summary>
|
||||
Class used for logging
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.Logger.ConsoleLogFormat">
|
||||
<summary>
|
||||
Format that is used when logging to the console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.Logger.DebugConsoleLogFormat">
|
||||
<summary>
|
||||
Format that is used when logging to the debug console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.Logger.FileLogFormat">
|
||||
<summary>
|
||||
Format that is used when logging to a file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.#ctor(Stone_Red_Utilities.Logging.LogTarget,System.String,System.String)">
|
||||
<summary>
|
||||
Initializes the logger with the default format and a file path
|
||||
</summary>
|
||||
<param name="defaultFormat"></param>
|
||||
<param name="logTarg"></param>
|
||||
<param name="file"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.Log(System.String,System.String,Stone_Red_Utilities.Logging.LogSeverity,System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Log the message to the specified output
|
||||
</summary>
|
||||
<param name="message"></param>
|
||||
<param name="source"></param>
|
||||
<param name="logSeverity"></param>
|
||||
<param name="memberName"></param>
|
||||
<param name="sourceFilePath"></param>
|
||||
<param name="sourceLineNumber"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.LogIf(System.Boolean,System.String,System.String,Stone_Red_Utilities.Logging.LogSeverity,System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Log the message to the specified output if the condition is met
|
||||
</summary>
|
||||
<param name="condition"></param>
|
||||
<param name="message"></param>
|
||||
<param name="source"></param>
|
||||
<param name="logSeverity"></param>
|
||||
<param name="memberName"></param>
|
||||
<param name="sourceFilePath"></param>
|
||||
<param name="sourceLineNumber"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.ClearLogFile">
|
||||
<summary>
|
||||
Clears the log file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.RandomExtentions.RandomExt">
|
||||
<summary>
|
||||
<see cref="T:System.Random"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.RandomExtentions.RandomExt.NextItem``1(System.Random,System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
Returns an random item from the specified <paramref name="collection"/> using the <see cref="T:System.Random"/> class
|
||||
</summary>
|
||||
<typeparam name="T"></typeparam>
|
||||
<param name="random"></param>
|
||||
<param name="collection"></param>
|
||||
<returns>Returns a random item from the specified <paramref name="collection"/></returns>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="collection" /> is <see langword="null" /></exception>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.RandomExtentions.RandomExt.NextBool(System.Random)">
|
||||
<summary>
|
||||
Returns a random <see cref="T:System.Boolean"/> using the <see cref="T:System.Random" /> class
|
||||
</summary>
|
||||
<param name="random"></param>
|
||||
<returns>Returns <see langword="true" /> or <see langword="false"/></returns>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="random" /> is <see langword="null" /></exception>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.RandomExtentions.RandomExt.NextEnum``1(System.Random,``0)">
|
||||
<summary>
|
||||
Returns a random item from the specified <see cref="T:System.Enum"/> using the <see cref="T:System.Random" /> class
|
||||
</summary>
|
||||
<typeparam name="T"></typeparam>
|
||||
<param name="random"></param>
|
||||
<param name="_"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.StringExtentions.StringExt">
|
||||
<summary>
|
||||
<see cref="T:System.String"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.EqualsIgnoreCase(System.String,System.String)">
|
||||
<summary>
|
||||
Determines whether this instance and another specified <see cref="T:System.String"/> object have the same value regardless of upper and lower case.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.EqualsIgnoreSpaces(System.String,System.String)">
|
||||
<summary>
|
||||
Determines whether this instance and another specified <see cref="T:System.String"/> object have the same value regardless of spaces.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.EqualsIgnoreSpacesAndCase(System.String,System.String)">
|
||||
<summary>
|
||||
Determines whether this instance and another specified <see cref="T:System.String"/> object have the same value regardless of upper and lower case and spaces.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.ToFileName(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Removes all invalid chars from the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="allowSpaces"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.ToPath(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Removes all invalid chars from the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="allowSpaces"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.Truncate(System.String,System.Int32)">
|
||||
<summary>
|
||||
Truncates a <see cref="T:System.String"/> to the specified length.
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="length"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.Truncate(System.String,System.Int32,System.Boolean)">
|
||||
<summary>
|
||||
Truncates a <see cref="T:System.String"/> to the specified length.
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="length"></param>
|
||||
<param name="ellipsis"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.CorrectNewLine(System.String)">
|
||||
<summary>
|
||||
Uses the correct newline <see cref="T:System.String"/> defined for this environment.
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.RemoveWhitespaces(System.String)">
|
||||
<summary>
|
||||
Revoves all whitespaces from the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.Reverse(System.String)">
|
||||
<summary>
|
||||
Reverses the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Binary file not shown.
+36
@@ -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": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+10
@@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
+9
@@ -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.
@@ -0,0 +1,339 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Stone_Red-C-Sharp-Utilities</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Stone_Red_Utilities.BoolExtentions.BoolExt">
|
||||
<summary>
|
||||
<see cref="T:System.Boolean"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.OneWayTrue(System.Boolean@,System.Boolean)">
|
||||
<summary>
|
||||
Sets value to true if input is true. If input is false the value will not change.
|
||||
</summary>
|
||||
<param name="bol"></param>
|
||||
<param name="input"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.OneWayFalse(System.Boolean@,System.Boolean)">
|
||||
<summary>
|
||||
Sets value to false if input is false. If input is true the value will not change.
|
||||
</summary>
|
||||
<param name="bol"></param>
|
||||
<param name="input"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.ToInt(System.Boolean)">
|
||||
<summary>
|
||||
Converts bool to int.
|
||||
</summary>
|
||||
<param name="input"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.FromInt(System.Boolean@,System.Int32)">
|
||||
<summary>
|
||||
Converts int to bool.
|
||||
</summary>
|
||||
<param name="bol"></param>
|
||||
<param name="input"></param>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.CollectionExtentions.TableStyle">
|
||||
<summary>
|
||||
Table Style
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Default">
|
||||
<summary>
|
||||
The default representaion of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Minimum">
|
||||
<summary>
|
||||
The minimal representation of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Alternative">
|
||||
<summary>
|
||||
The alternative representaion of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.List">
|
||||
<summary>
|
||||
The list representaion of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.CollectionExtentions.CollectionExt">
|
||||
<summary>
|
||||
<see cref="T:System.Collections.Generic.IEnumerable`1"/> and <see cref="T:System.Array"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.CollectionExtentions.CollectionExt.Print``1(System.Collections.Generic.IEnumerable{``0},System.Char,System.Boolean)">
|
||||
<summary>
|
||||
Prints all items of an <see cref="T:System.Collections.Generic.IEnumerable`1"/>
|
||||
</summary>
|
||||
<param name="list"></param>
|
||||
<param name="delimiter"></param>
|
||||
<param name="printToDebugConsole"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.CollectionExtentions.CollectionExt.PrintTable``1(``0[0:,0:],Stone_Red_Utilities.CollectionExtentions.TableStyle)">
|
||||
<summary>
|
||||
Creates and prints table from 2D array
|
||||
</summary>
|
||||
<typeparam name="T"></typeparam>
|
||||
<param name="array"></param>
|
||||
<param name="tableStyle"></param>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt">
|
||||
<summary>
|
||||
<see cref="T:System.Console"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.Write(System.Object,System.ConsoleColor)">
|
||||
<summary>
|
||||
Writes the text representation of the specified object to the standard output stream.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="color"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.WriteLine(System.Object,System.ConsoleColor)">
|
||||
<summary>
|
||||
Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="color"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.Pause(System.Boolean,System.String)">
|
||||
<summary>
|
||||
Suspends execution of the current method until the user presses a key
|
||||
</summary>
|
||||
<param name="enterKeyOnly"></param>
|
||||
<param name="customMessage"></param>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.Logging.LogTarget">
|
||||
<summary>
|
||||
Specifies the severity of the log target.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.Console">
|
||||
<summary>
|
||||
Writes log to console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.DebugConsole">
|
||||
<summary>
|
||||
Writes log to debug console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.File">
|
||||
<summary>
|
||||
Writes log to file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.All">
|
||||
<summary>
|
||||
Writes log to console debug console and file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.Logging.LogSeverity">
|
||||
<summary>
|
||||
Specifies the severity of the log message.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Debug">
|
||||
<summary>
|
||||
Logs that contain the most detailed messages.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Info">
|
||||
<summary>
|
||||
Logs that track the general flow of the application.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Warning">
|
||||
<summary>
|
||||
Logs that highlight an abnormal activity in the flow of execution.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Error">
|
||||
<summary>
|
||||
Logs that highlight when the flow of execution is stopped due to a failure.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Fatal">
|
||||
<summary>
|
||||
Logs that contain the most severe level of error. This type of error indicate that immediate attention may be required.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.Logging.Logger">
|
||||
<summary>
|
||||
Class used for logging
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.Logger.ConsoleLogFormat">
|
||||
<summary>
|
||||
Format that is used when logging to the console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.Logger.DebugConsoleLogFormat">
|
||||
<summary>
|
||||
Format that is used when logging to the debug console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.Logger.FileLogFormat">
|
||||
<summary>
|
||||
Format that is used when logging to a file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.#ctor(Stone_Red_Utilities.Logging.LogTarget,System.String,System.String)">
|
||||
<summary>
|
||||
Initializes the logger with the default format and a file path
|
||||
</summary>
|
||||
<param name="defaultFormat"></param>
|
||||
<param name="logTarg"></param>
|
||||
<param name="file"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.Log(System.String,System.String,Stone_Red_Utilities.Logging.LogSeverity,System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Log the message to the specified output
|
||||
</summary>
|
||||
<param name="message"></param>
|
||||
<param name="source"></param>
|
||||
<param name="logSeverity"></param>
|
||||
<param name="memberName"></param>
|
||||
<param name="sourceFilePath"></param>
|
||||
<param name="sourceLineNumber"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.LogIf(System.Boolean,System.String,System.String,Stone_Red_Utilities.Logging.LogSeverity,System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Log the message to the specified output if the condition is met
|
||||
</summary>
|
||||
<param name="condition"></param>
|
||||
<param name="message"></param>
|
||||
<param name="source"></param>
|
||||
<param name="logSeverity"></param>
|
||||
<param name="memberName"></param>
|
||||
<param name="sourceFilePath"></param>
|
||||
<param name="sourceLineNumber"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.ClearLogFile">
|
||||
<summary>
|
||||
Clears the log file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.RandomExtentions.RandomExt">
|
||||
<summary>
|
||||
<see cref="T:System.Random"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.RandomExtentions.RandomExt.NextItem``1(System.Random,System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
Returns an random item from the specified <paramref name="collection"/> using the <see cref="T:System.Random"/> class
|
||||
</summary>
|
||||
<typeparam name="T"></typeparam>
|
||||
<param name="random"></param>
|
||||
<param name="collection"></param>
|
||||
<returns>Returns a random item from the specified <paramref name="collection"/></returns>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="collection" /> is <see langword="null" /></exception>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.RandomExtentions.RandomExt.NextBool(System.Random)">
|
||||
<summary>
|
||||
Returns a random <see cref="T:System.Boolean"/> using the <see cref="T:System.Random" /> class
|
||||
</summary>
|
||||
<param name="random"></param>
|
||||
<returns>Returns <see langword="true" /> or <see langword="false"/></returns>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="random" /> is <see langword="null" /></exception>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.RandomExtentions.RandomExt.NextEnum``1(System.Random,``0)">
|
||||
<summary>
|
||||
Returns a random item from the specified <see cref="T:System.Enum"/> using the <see cref="T:System.Random" /> class
|
||||
</summary>
|
||||
<typeparam name="T"></typeparam>
|
||||
<param name="random"></param>
|
||||
<param name="_"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.StringExtentions.StringExt">
|
||||
<summary>
|
||||
<see cref="T:System.String"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.EqualsIgnoreCase(System.String,System.String)">
|
||||
<summary>
|
||||
Determines whether this instance and another specified <see cref="T:System.String"/> object have the same value regardless of upper and lower case.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.EqualsIgnoreSpaces(System.String,System.String)">
|
||||
<summary>
|
||||
Determines whether this instance and another specified <see cref="T:System.String"/> object have the same value regardless of spaces.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.EqualsIgnoreSpacesAndCase(System.String,System.String)">
|
||||
<summary>
|
||||
Determines whether this instance and another specified <see cref="T:System.String"/> object have the same value regardless of upper and lower case and spaces.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.ToFileName(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Removes all invalid chars from the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="allowSpaces"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.ToPath(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Removes all invalid chars from the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="allowSpaces"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.Truncate(System.String,System.Int32)">
|
||||
<summary>
|
||||
Truncates a <see cref="T:System.String"/> to the specified length.
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="length"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.Truncate(System.String,System.Int32,System.Boolean)">
|
||||
<summary>
|
||||
Truncates a <see cref="T:System.String"/> to the specified length.
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="length"></param>
|
||||
<param name="ellipsis"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.CorrectNewLine(System.String)">
|
||||
<summary>
|
||||
Uses the correct newline <see cref="T:System.String"/> defined for this environment.
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.RemoveWhitespaces(System.String)">
|
||||
<summary>
|
||||
Revoves all whitespaces from the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.Reverse(System.String)">
|
||||
<summary>
|
||||
Reverses the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Binary file not shown.
+4
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
42ae254ffb091349f3ca8cbbfdc4184a3296757d
|
||||
+8
@@ -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
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
3e6e32b5a238cce47f7aeb7589b17b45b34cb0fa
|
||||
+20
@@ -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
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
d8c70e80eb8e020766aa7f8073262ae63ee0a93c
|
||||
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
+4
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
554b2b887e56c429ecf52b4043aa124fe55e2b96
|
||||
+8
@@ -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
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
bd88301ce8fb7aadd4b4649bbdcf209c9abd7ef1
|
||||
+20
@@ -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
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
d8c70e80eb8e020766aa7f8073262ae63ee0a93c
|
||||
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
+132
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\David\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\David\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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": []
|
||||
}
|
||||
Reference in New Issue
Block a user