diff --git a/.vs/Stone_Red-C-Sharp-Utilities/DesignTimeBuild/.dtbcache.v2 b/.vs/Stone_Red-C-Sharp-Utilities/DesignTimeBuild/.dtbcache.v2 index 7dd37df..1edd0b2 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 71a4be5..ee2969b 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 e37f650..94836bf 100644 --- a/README.md +++ b/README.md @@ -188,14 +188,7 @@ https://www.nuget.org/packages/Stone_Red-C-Sharp-Utilities True ``` ### Stone_Red_Utilities.Logging -#### Constructors: - * Logger - * Initializes the logger with the default format. - * Parameters: `LogTarget logTarg`, `string defaultFormat` - * Example usage: - ```cs - Logger logger = new Logger(LogTarget.Console, "{:HH:mm:ss} | {,-7} | {,-15} | {}"); - ``` +#### Constructor: * Logger * Initializes the logger with the default format and a file path. * Parameters: `LogTarget logTarg`, `string file`, `string defaultFormat` diff --git a/Stone_Red-C-Sharp-Utilities/Logging.cs b/Stone_Red-C-Sharp-Utilities/Logging.cs index 9e978a2..6058901 100644 --- a/Stone_Red-C-Sharp-Utilities/Logging.cs +++ b/Stone_Red-C-Sharp-Utilities/Logging.cs @@ -26,16 +26,6 @@ namespace Stone_Red_Utilities.Logging /// File, - /// - /// Writes log to console and file - /// - ConsoleAndFile, - - /// - /// Writes log to debug console and file - /// - DebugAndFile, - /// /// Writes log to console debug console and file /// @@ -104,7 +94,7 @@ namespace Stone_Red_Utilities.Logging /// public Logger(LogTarget logTarg = LogTarget.Console, string file = null, string defaultFormat = "{:HH:mm:ss} | {,-7} | {,-15} | {}") { - if (logTarg == LogTarget.ConsoleAndFile || logTarg == LogTarget.DebugAndFile || logTarg == LogTarget.File || logTarg == LogTarget.All) + if ((logTarg & LogTarget.File) == LogTarget.File || (logTarg & LogTarget.All) == LogTarget.All) logPath = file ?? throw new ArgumentNullException(nameof(file), $"file can't be null!"); logTarget = logTarg; @@ -113,22 +103,6 @@ namespace Stone_Red_Utilities.Logging FileLogFormat = defaultFormat; } - /// - /// Initializes the logger with the default format - /// - /// - /// - public Logger(LogTarget logTarg = LogTarget.Console, string defaultFormat = "{} | {,-7} | {,-15} | {}") - { - if (logTarg == LogTarget.ConsoleAndFile || logTarg == LogTarget.DebugAndFile || logTarg == LogTarget.File || logTarg == LogTarget.All) - throw new ArgumentNullException("file", $"file can't be null!"); - - logTarget = logTarg; - ConsoleLogFormat = defaultFormat; - DebugConsoleLogFormat = defaultFormat; - FileLogFormat = defaultFormat; - } - /// /// Log the message to the specified output /// @@ -174,38 +148,24 @@ namespace Stone_Red_Utilities.Logging string debugOutput = GetFormattedString(DebugConsoleLogFormat, logSeverity, source, message, memberName, sourceFilePath, sourceLineNumber); string fileOutput = GetFormattedString(FileLogFormat, logSeverity, source, message, memberName, sourceFilePath, sourceLineNumber); - switch (logTarget) + if ((logTarget & LogTarget.Console) == LogTarget.Console) { - case LogTarget.Console: - ConsoleExt.WriteLine(consoleOutput, GetColor(logSeverity)); - break; + ConsoleExt.WriteLine(consoleOutput, GetColor(logSeverity)); + } - case LogTarget.DebugConsole: - Debug.WriteLine(debugOutput); - break; + if ((logTarget & LogTarget.DebugConsole) == LogTarget.DebugConsole) + { + Debug.WriteLine(debugOutput); + } - case LogTarget.File: - File.AppendAllLines(logPath, new[] { fileOutput }); - break; + if ((logTarget & LogTarget.File) == LogTarget.File) + File.AppendAllLines(logPath, new[] { fileOutput }); - case LogTarget.ConsoleAndFile: - ConsoleExt.WriteLine(consoleOutput, GetColor(logSeverity)); - File.AppendAllLines(logPath, new[] { fileOutput }); - break; - - case LogTarget.DebugAndFile: - Debug.WriteLine(debugOutput); - File.AppendAllLines(logPath, new[] { fileOutput }); - break; - - case LogTarget.All: - Debug.WriteLine(debugOutput); - ConsoleExt.WriteLine(consoleOutput, GetColor(logSeverity)); - File.AppendAllLines(logPath, new[] { fileOutput }); - break; - - default: - throw new ArgumentException("Log target type not valid!"); + if ((logTarget & LogTarget.All) == LogTarget.All) + { + Debug.WriteLine(debugOutput); + ConsoleExt.WriteLine(consoleOutput, GetColor(logSeverity)); + File.AppendAllLines(logPath, new[] { fileOutput }); } } 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 89312b5..2293899 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,15 +6,15 @@ Stone_Red Console, Table, Print true - Adds useful extentions. + Adds useful methods https://github.com/Stone-Red-Code/Stone_Red-C-Sharp-Utilities en LICENSE false - 1.0.0.2 - 1.0.0.2 - 1.0.1.0 + 1.0.1.1 + 1.0.1.1 + 1.0.1.1 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 b8e3aea..3fcfbdc 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 @@ -123,16 +123,6 @@ Writes log to file - - - Writes log to console and file - - - - - Writes log to debug console and file - - Writes log to console debug console and file @@ -196,13 +186,6 @@ - - - Initializes the logger with the default format - - - - Log the message to the specified output diff --git a/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.1.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.1.nupkg new file mode 100644 index 0000000..fd008b6 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.1.nupkg differ diff --git a/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.nupkg new file mode 100644 index 0000000..c3ef176 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.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 5237ff3..f993230 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.0.2": { + "Stone_Red-C-Sharp-Utilities/1.0.1.1": { "runtime": { "Stone_Red-C-Sharp-Utilities.dll": {} } @@ -15,7 +15,7 @@ } }, "libraries": { - "Stone_Red-C-Sharp-Utilities/1.0.0.2": { + "Stone_Red-C-Sharp-Utilities/1.0.1.1": { "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 690f138..2395d0c 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 eff74b9..067e7e5 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 e6c9faf..3fcfbdc 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 @@ -96,6 +96,13 @@ + + + Suspends execution until the user presses a key + + + + Specifies the severity of the log target. @@ -116,16 +123,6 @@ Writes log to file - - - Writes log to console and file - - - - - Writes log to debug console and file - - Writes log to console debug console and file @@ -183,19 +180,12 @@ - Initializes the logger with the default format + Initializes the logger with the default format and a file path - - - Initializes the logger with the default format - - - - Log the message to the specified output @@ -209,7 +199,7 @@ - Log the message to the specified output when the condition is met + Log the message to the specified output if the condition is met @@ -221,7 +211,7 @@ - Clears log file + Clears the log file diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.1.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.1.nupkg new file mode 100644 index 0000000..8f2fea0 Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.1.nupkg differ diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.nupkg deleted file mode 100644 index c6664d3..0000000 Binary files a/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.nupkg and /dev/null 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 6c0c41c..f993230 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.0": { + "Stone_Red-C-Sharp-Utilities/1.0.1.1": { "runtime": { "Stone_Red-C-Sharp-Utilities.dll": {} } @@ -15,7 +15,7 @@ } }, "libraries": { - "Stone_Red-C-Sharp-Utilities/1.0.1.0": { + "Stone_Red-C-Sharp-Utilities/1.0.1.1": { "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 d725974..a1cba6a 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 649a472..36b3268 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 b8e3aea..3fcfbdc 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 @@ -123,16 +123,6 @@ Writes log to file - - - Writes log to console and file - - - - - Writes log to debug console and file - - Writes log to console debug console and file @@ -196,13 +186,6 @@ - - - Initializes the logger with the default format - - - - Log the message to the specified output diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.1.nuspec b/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.1.nuspec new file mode 100644 index 0000000..8bf676b --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.1.nuspec @@ -0,0 +1,22 @@ + + + + Stone_Red-C-Sharp-Utilities + 1.0.1.1 + Stone_Red + false + LICENSE + https://aka.ms/deprecateLicenseUrl + Adds useful methods + Console, Table, Print + + + + + + + + + + + \ No newline at end of file diff --git a/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.nuspec b/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.nuspec new file mode 100644 index 0000000..665feb9 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities/obj/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.nuspec @@ -0,0 +1,22 @@ + + + + Stone_Red-C-Sharp-Utilities + 1.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/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 b12ffad..1eeedc6 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,12 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Stone_Red")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[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.AssemblyDescriptionAttribute("Adds useful methods")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1.1")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1.1")] [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.AssemblyVersionAttribute("1.0.1.1")] [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 f69fb67..f78619b 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 @@ -b9bbba780995045ee0e07cb8d0fe99b0882b90f8 +a3dcfdd1a37a276a89a7dc6e510a1e222a45e18c 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 b9ceffa..1357f02 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 690f138..2395d0c 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 eff74b9..067e7e5 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.1.1.nuspec b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.1.1.nuspec new file mode 100644 index 0000000..019dde3 --- /dev/null +++ b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.1.1.nuspec @@ -0,0 +1,22 @@ + + + + Stone_Red-C-Sharp-Utilities + 1.0.1.1 + Stone_Red + false + LICENSE + https://aka.ms/deprecateLicenseUrl + Adds useful methods + Console, Table, Print + + + + + + + + + + + \ No newline at end of file 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 3d3b10a..d52a6c7 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 @@ -13,12 +13,12 @@ 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.1.0")] +[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.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.AssemblyVersionAttribute("1.0.1.1")] [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 0b33404..ad772c6 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 @@ -86ed32e371a4832ff8ffcde04e090abd3861fffd +bedbe864b47b33264dd1a74cec3ab965f23ecb76 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 bf3f189..528c0a2 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 d725974..a1cba6a 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 649a472..36b3268 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 e81c55f..29dfebd 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", + "version": "1.0.1.1", "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 37b62ea..f032948 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.1", + "version": "1.0.1.1", "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 b5ae36f..56f629e 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": "9bUdOQXkoJVmBHKtXL8WIV2wGOGQ2ZUNAipYzs4vkTUUx7it6qWwjRlEnfdvkceTSY3j3kyImDuhrb0sCF5omw==", + "dgSpecHash": "OCorf4dA0laiwZvXM3MOab9IJ1fDO9ZjZiu5LzBWWVhaWliIFQdh1aRWHcfoxyrHUqXL1v73DMUfIxv/J9Xz1Q==", "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": [],