diff --git a/.vs/Stone_Red-C-Sharp-Utilities/v16/.suo b/.vs/Stone_Red-C-Sharp-Utilities/v16/.suo
index 73627db..2da11dc 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/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.csproj b/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.csproj
index 04f5670..51e4f6b 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
@@ -6,7 +6,15 @@
Stone_Red
Console, Table, Print
true
- Adds useful console extentions.
+ Adds useful extentions.
+
+ https://github.com/Stone-Red-Code/Stone_Red-C-Sharp-Utilities
+ en
+ LICENSE
+ false
+ 1.0.0.2
+ 1.0.0.2
+ 1.0.0.2
@@ -17,4 +25,11 @@
C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities.xml
+
+
+ True
+
+
+
+
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 a3430f2..e9d3ede 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
@@ -63,19 +63,19 @@
Extentions
-
-
- Sets value to true if input is false. If input is true the value will not change.
-
-
-
-
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.
+
+
+
@@ -103,7 +103,7 @@
- Determines whether this string and a specified object have the same value regardless of upper and lower case. A parameter specifies the culture, case, and sort rules used in the comparison.
+ Determines whether this instance and another specified object have the same value regardless of upper and lower case.
@@ -111,7 +111,7 @@
- Determines whether this string and a specified object have the same value regardless of spaces. A parameter specifies the culture, case, and sort rules used in the comparison.
+ Determines whether this instance and another specified object have the same value regardless of spaces.
@@ -119,7 +119,7 @@
- Determines whether this string and a specified object have the same value regardless of upper and lower case and spaces. A parameter specifies the culture, case, and sort rules used in the comparison.
+ Determines whether this instance and another specified object have the same value regardless of upper and lower case and spaces.
diff --git a/Stone_Red-C-Sharp-Utilities/Stone_Red_Utilities.cs b/Stone_Red-C-Sharp-Utilities/Stone_Red_Utilities.cs
index b3f17ac..1fde32f 100644
--- a/Stone_Red-C-Sharp-Utilities/Stone_Red_Utilities.cs
+++ b/Stone_Red-C-Sharp-Utilities/Stone_Red_Utilities.cs
@@ -167,25 +167,25 @@ namespace Stone_Red_Utilities.BoolExtentions
public static class BoolExt
{
///
- /// Sets value to true if input is false. If input is true the value will not change.
+ /// Sets value to true if input is true. If input is false the value will not change.
///
///
- ///
- public static void OneWayFalse(this ref bool bol, bool bol1)
+ ///
+ public static void OneWayTrue(this ref bool bol, bool input)
{
- if (bol == true && !bol1)
+ if (bol == false && input)
bol = true;
}
///
- /// 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.
///
///
- ///
- public static void OneWayTrue(this ref bool bol, bool bol1)
+ ///
+ public static void OneWayFalse(this ref bool bol, bool input)
{
- if (bol == false && bol1)
- bol = true;
+ if (bol == true && !input)
+ bol = false;
}
}
}
@@ -239,7 +239,7 @@ namespace Stone_Red_Utilities.StringExtentions
public static class StringExt
{
///
- /// Determines whether this string and a specified object have the same value regardless of upper and lower case. A parameter specifies the culture, case, and sort rules used in the comparison.
+ /// Determines whether this instance and another specified object have the same value regardless of upper and lower case.
///
///
///
@@ -250,7 +250,7 @@ namespace Stone_Red_Utilities.StringExtentions
}
///
- /// Determines whether this string and a specified object have the same value regardless of spaces. A parameter specifies the culture, case, and sort rules used in the comparison.
+ /// Determines whether this instance and another specified object have the same value regardless of spaces.
///
///
///
@@ -261,7 +261,7 @@ namespace Stone_Red_Utilities.StringExtentions
}
///
- /// Determines whether this string and a specified object have the same value regardless of upper and lower case and spaces. A parameter specifies the culture, case, and sort rules used in the comparison.
+ /// Determines whether this instance and another specified object have the same value regardless of upper and lower case and spaces.
///
///
///
diff --git a/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.nupkg
index 77e1be3..e36cfb3 100644
Binary files a/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.nupkg and b/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.nupkg differ
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 4e4dce5..8d47e47 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 82b7b19..1132216 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 a3430f2..fb00bde 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
@@ -63,16 +63,16 @@
Extentions
-
+
- Sets value to true if input is false. If input is true the value will not change.
+ Sets value to true if input is true. If input is false the value will not change.
-
+
- 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.
diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.0.1.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.0.1.nupkg
new file mode 100644
index 0000000..8dcb6ad
Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.0.1.nupkg differ
diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.0.2.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.0.2.nupkg
new file mode 100644
index 0000000..9953d17
Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.0.2.nupkg differ
diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.0.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.0.nupkg
new file mode 100644
index 0000000..e445f98
Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.0.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
new file mode 100644
index 0000000..5237ff3
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.deps.json
@@ -0,0 +1,24 @@
+{
+ "runtimeTarget": {
+ "name": ".NETStandard,Version=v2.1/",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETStandard,Version=v2.1": {},
+ ".NETStandard,Version=v2.1/": {
+ "Stone_Red-C-Sharp-Utilities/1.0.0.2": {
+ "runtime": {
+ "Stone_Red-C-Sharp-Utilities.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Stone_Red-C-Sharp-Utilities/1.0.0.2": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
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
new file mode 100644
index 0000000..3f011f0
Binary files /dev/null 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
new file mode 100644
index 0000000..fdba177
Binary files /dev/null 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
new file mode 100644
index 0000000..e9d3ede
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.xml
@@ -0,0 +1,137 @@
+
+
+
+ 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 not
+
+
+
+
+
+
+
+ Prints items of list
+
+
+
+
+
+
+
+ Creates and prints table from 2D array
+
+
+
+
+
+
+
+ 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.
+
+
+
+
+
+
+ Console 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.
+
+
+
+
+
+
+ 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 file name
+
+
+
+
+
+
+
diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.nuspec b/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.nuspec
index 34a4a55..941f92c 100644
--- a/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.nuspec
+++ b/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.nuspec
@@ -5,8 +5,11 @@
1.0.0
Stone_Red
false
- Adds useful console extentions.
+ LICENSE
+ https://aka.ms/deprecateLicenseUrl
+ Adds useful extentions.
Console, Table, Print
+
@@ -14,5 +17,6 @@
+
\ 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 8c49af4..8cebc42 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
@@ -13,12 +13,14 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Stone_Red")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyDescriptionAttribute("Adds useful console extentions.")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyDescriptionAttribute("Adds useful extentions.")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.1")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.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.0.0")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.1")]
+[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/Stone-Red-Code/Stone_Red-C-Sharp-Utilities")]
+[assembly: System.Resources.NeutralResourcesLanguageAttribute("en")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.
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 8691593..574862a 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 @@
-8c2e203d84daa0b8e5b9ced52713101c4bfeb992
+79fea3c9f37b474e6f121f93359880517e33c033
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 a88e8c8..fd6301f 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 4e4dce5..8d47e47 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 82b7b19..1132216 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.0.1.nuspec b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.0.1.nuspec
new file mode 100644
index 0000000..3a041ba
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.0.1.nuspec
@@ -0,0 +1,22 @@
+
+
+
+ Stone_Red-C-Sharp-Utilities
+ 1.0.0.1
+ Stone_Red
+ false
+ LICENSE
+ https://aka.ms/deprecateLicenseUrl
+ Adds useful extentions.
+ Console, Table, Print
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.0.2.nuspec b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.0.2.nuspec
new file mode 100644
index 0000000..42f2eb6
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.0.2.nuspec
@@ -0,0 +1,22 @@
+
+
+
+ Stone_Red-C-Sharp-Utilities
+ 1.0.0.2
+ Stone_Red
+ false
+ LICENSE
+ https://aka.ms/deprecateLicenseUrl
+ Adds useful extentions.
+ Console, Table, Print
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.0.nuspec b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.0.nuspec
new file mode 100644
index 0000000..ce2534d
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.0.nuspec
@@ -0,0 +1,22 @@
+
+
+
+ Stone_Red-C-Sharp-Utilities
+ 1.0.0
+ Stone_Red
+ false
+ LICENSE
+ https://aka.ms/deprecateLicenseUrl
+ Adds useful extentions.
+ Console, Table, Print
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
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
new file mode 100644
index 0000000..e298d81
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/obj/Release/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 extentions.
+ Console, Table, Print
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs
new file mode 100644
index 0000000..bc644cb
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = "")]
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
new file mode 100644
index 0000000..0a33004
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs
@@ -0,0 +1,26 @@
+//------------------------------------------------------------------------------
+//
+// 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")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyDescriptionAttribute("Adds useful extentions.")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.2")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0.2")]
+[assembly: System.Reflection.AssemblyProductAttribute("Stone_Red-C-Sharp-Utilities")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Stone_Red-C-Sharp-Utilities")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.2")]
+[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/Stone-Red-Code/Stone_Red-C-Sharp-Utilities")]
+[assembly: System.Resources.NeutralResourcesLanguageAttribute("en")]
+
+// Von der MSBuild WriteCodeFragment-Klasse generiert.
+
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
new file mode 100644
index 0000000..d6c0b7e
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+4add0698c50aff5e6bd57f5b02d6f14125a759e5
diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.assets.cache b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.assets.cache
new file mode 100644
index 0000000..ff50978
Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.assets.cache differ
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
new file mode 100644
index 0000000..6bc4183
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+a57cbf8e3143b81e8c898c1738148a8800dbe5ce
diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.FileListAbsolute.txt b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..4cbd3f0
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csproj.FileListAbsolute.txt
@@ -0,0 +1,10 @@
+C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities\bin\Release\netstandard2.1\Stone_Red-C-Sharp-Utilities.deps.json
+C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities\bin\Release\netstandard2.1\Stone_Red-C-Sharp-Utilities.dll
+C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities\bin\Release\netstandard2.1\Stone_Red-C-Sharp-Utilities.pdb
+C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities\bin\Release\netstandard2.1\Stone_Red-C-Sharp-Utilities.xml
+C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities\obj\Release\netstandard2.1\Stone_Red-C-Sharp-Utilities.AssemblyInfoInputs.cache
+C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities\obj\Release\netstandard2.1\Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs
+C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities\obj\Release\netstandard2.1\Stone_Red-C-Sharp-Utilities.csproj.CoreCompileInputs.cache
+C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities\obj\Release\netstandard2.1\Stone_Red-C-Sharp-Utilities.dll
+C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities\obj\Release\netstandard2.1\Stone_Red-C-Sharp-Utilities.pdb
+C:\Users\David\Google Drive\Programmieren\Stone_Red-C-Sharp-Utilities\Stone_Red-C-Sharp-Utilities\obj\Release\netstandard2.1\Stone_Red-C-Sharp-Utilities.csprojAssemblyReference.cache
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
new file mode 100644
index 0000000..8657261
Binary files /dev/null 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
new file mode 100644
index 0000000..3f011f0
Binary files /dev/null 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
new file mode 100644
index 0000000..fdba177
Binary files /dev/null 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 4226f61..949c712 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.0",
+ "version": "1.0.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 ab48097..9637ef7 100644
--- a/Stone_Red-C-Sharp-Utilities/obj/project.assets.json
+++ b/Stone_Red-C-Sharp-Utilities/obj/project.assets.json
@@ -12,7 +12,7 @@
"C:\\Microsoft\\Xamarin\\NuGet\\": {}
},
"project": {
- "version": "1.0.0",
+ "version": "1.0.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 d7b6604..f8baeac 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": "OD3S2PWuQPadb3YXVH/TFgttmtjOKEVETA8QX9aG0cwuXdgBYbJfZIrRqjQ5ftaDT3bOn/k9aLahlqPTvz92YQ==",
+ "dgSpecHash": "2VJSRKb/gc57sxTJshaKHZlH4eHV1dHn5znnRPKDBMMcq2gLxMBxabpH2Q44hNjbAyPx6mu//H+srU7j3iCF3Q==",
"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": [],