diff --git a/.vs/Stone_Red-C-Sharp-Utilities/DesignTimeBuild/.dtbcache.v2 b/.vs/Stone_Red-C-Sharp-Utilities/DesignTimeBuild/.dtbcache.v2
index 1edd0b2..97f625a 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 ee2969b..fd1b055 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 87ea404..50808b4 100644
--- a/README.md
+++ b/README.md
@@ -137,8 +137,47 @@ https://www.nuget.org/packages/Stone_Red-C-Sharp-Utilities
False
False
```
+* ToInt
+ * Description: Converts bool to int.
+ * Parameters: `this bool bol`
+ * Example usage:
+ ```cs
+ bool bol1 = false;
+ bool bol2 = true;
+
+ int i = bol1.ToInt();
+ int j = bol2.ToInt();
+
+ Console.WriteLine(i);
+ Console.WriteLine(j);
+ ```
+ * Output:
+ ```
+ 0
+ 1
+ ```
+* FromInt
+ * Description: Converts int to bool.
+ * Parameters: `this ref bool bol`, `int input`
+ * Example usage:
+ ```cs
+ bool bol1;
+ bool bol2;
+
+ bol1.FromInt(0);
+ bol2.FromInt(1);
+
+ Console.WriteLine(bol1);
+ Console.WriteLine(bol2);
+ ```
+ * Output:
+ ```
+ false
+ true
+ ```
### Stone_Red_Utilities.StringExtentions
-#### Methods:
+#### Methods
+
* EqualsIgnoreCase
* Description: Determines whether this instance and another specified string object have the same value regardless of upper and lower case.
* Parameters: `this string str`, `string value`
@@ -187,6 +226,32 @@ https://www.nuget.org/packages/Stone_Red-C-Sharp-Utilities
```
True
```
+ * ToFileName
+ * Description: Determines whether this instance and another specified string object have the same value regardless of upper and lower case and spaces.
+ * Parameters: `this string str`, `string value`
+ * Example usage:
+ ```cs
+ string str = "*n*/ /äme";
+ string fileName = str.ToFileName();
+ Console.WriteLine(fileName);
+ ```
+ * Output:
+ ```
+ name
+ ```
+ * ToPath
+ * Description: Determines whether this instance and another specified string object have the same value regardless of upper and lower case and spaces.
+ * Parameters: `this string str`, `string value`
+ * Example usage:
+ ```cs
+ string str = "C://goöd /päth";
+ string fileName = str.ToPath();
+ Console.WriteLine(fileName);
+ ```
+ * Output:
+ ```
+ C://good/path
+ ```
### Stone_Red_Utilities.Logging
#### Constructor:
* Logger
diff --git a/Stone_Red-C-Sharp-Utilities/ArrListExtentions.cs b/Stone_Red-C-Sharp-Utilities/ArrListExtentions.cs
index c1891f0..bceba03 100644
--- a/Stone_Red-C-Sharp-Utilities/ArrListExtentions.cs
+++ b/Stone_Red-C-Sharp-Utilities/ArrListExtentions.cs
@@ -1,9 +1,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
-using System.Globalization;
-using System.IO;
-using System.Text;
namespace Stone_Red_Utilities.ArrListExtentions
{
diff --git a/Stone_Red-C-Sharp-Utilities/BoolExtentions.cs b/Stone_Red-C-Sharp-Utilities/BoolExtentions.cs
index 301d883..9d35fc2 100644
--- a/Stone_Red-C-Sharp-Utilities/BoolExtentions.cs
+++ b/Stone_Red-C-Sharp-Utilities/BoolExtentions.cs
@@ -26,5 +26,25 @@
if (bol == true && !input)
bol = false;
}
+
+ ///
+ /// Converts bool to int.
+ ///
+ ///
+ ///
+ public static int ToInt(this bool input)
+ {
+ return input ? 1 : 0;
+ }
+
+ ///
+ /// Converts int to bool.
+ ///
+ ///
+ ///
+ public static void FromInt(this ref bool bol, int input)
+ {
+ bol = input == 1;
+ }
}
}
\ No newline at end of file
diff --git a/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.csproj b/Stone_Red-C-Sharp-Utilities/Stone_Red-C-Sharp-Utilities.csproj
index 2293899..9e54851 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
@@ -4,7 +4,7 @@
netstandard2.1
Stone_Red_C_Sharp_Utilities
Stone_Red
- Console, Table, Print
+ ExtensionMethods, Methods, Extention, Console, Table, Print, C#
true
Adds useful methods
@@ -12,9 +12,9 @@
en
LICENSE
false
- 1.0.1.1
- 1.0.1.1
- 1.0.1.1
+ 1.0.1.2
+ 1.0.1.2
+ 1.0.1.2
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 3fcfbdc..e8cf7be 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
@@ -77,6 +77,20 @@
+
+
+ Converts bool to int.
+
+
+
+
+
+
+ Converts bool to int.
+
+
+
+
Console Extentions
@@ -245,7 +259,15 @@
- Removes all invalid chars from file name
+ Removes all invalid chars from the specified string
+
+
+
+
+
+
+
+ Removes all invalid chars from the specified string
@@ -268,5 +290,12 @@
+
+
+ Uses the correct newline string defined for this environment.
+
+
+
+
diff --git a/Stone_Red-C-Sharp-Utilities/StringExtentions.cs b/Stone_Red-C-Sharp-Utilities/StringExtentions.cs
index 0092afc..98b09a4 100644
--- a/Stone_Red-C-Sharp-Utilities/StringExtentions.cs
+++ b/Stone_Red-C-Sharp-Utilities/StringExtentions.cs
@@ -1,10 +1,8 @@
using System;
-using System.Collections.Generic;
using System.Globalization;
using System.IO;
-using System.Linq;
+using System.Runtime.InteropServices;
using System.Text;
-using System.Text.RegularExpressions;
namespace Stone_Red_Utilities.StringExtentions
{
@@ -47,7 +45,7 @@ namespace Stone_Red_Utilities.StringExtentions
}
///
- /// Removes all invalid chars from file name
+ /// Removes all invalid chars from the specified string
///
///
///
@@ -79,6 +77,39 @@ namespace Stone_Red_Utilities.StringExtentions
return stringBuilder.ToString().Normalize(NormalizationForm.FormC);
}
+ ///
+ /// Removes all invalid chars from the specified string
+ ///
+ ///
+ ///
+ ///
+ public static string ToPath(this string str, bool allowSpaces = false)
+ {
+ char[] invalidChars = Path.GetInvalidPathChars();
+
+ if (!allowSpaces)
+ str = str.Replace(" ", string.Empty);
+
+ foreach (var item in invalidChars)
+ {
+ str = str.Replace(item.ToString(), string.Empty);
+ }
+
+ var normalizedString = str.Normalize(NormalizationForm.FormD);
+ var stringBuilder = new StringBuilder();
+
+ foreach (var c in normalizedString)
+ {
+ var unicodeCategory = CharUnicodeInfo.GetUnicodeCategory(c);
+ if (unicodeCategory != UnicodeCategory.NonSpacingMark)
+ {
+ stringBuilder.Append(c);
+ }
+ }
+
+ return stringBuilder.ToString().Normalize(NormalizationForm.FormC);
+ }
+
///
/// Truncates a string to the specified length.
///
@@ -114,5 +145,20 @@ namespace Stone_Red_Utilities.StringExtentions
return str;
}
+
+ ///
+ /// Uses the correct newline string defined for this environment.
+ ///
+ ///
+ ///
+ public static string CorrectNewLine(this string str)
+ {
+ if (Environment.OSVersion.Platform == PlatformID.Unix)
+ str = str.Replace("\r\n", "\n");
+ else
+ str = str.Replace("\n", "\r\n"); //Ik that this can produce wrong results
+
+ return str;
+ }
}
}
\ No newline at end of file
diff --git a/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.2.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.2.nupkg
deleted file mode 100644
index 626233a..0000000
Binary files a/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.2.nupkg and /dev/null differ
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
deleted file mode 100644
index e36cfb3..0000000
Binary files a/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.0.nupkg and /dev/null differ
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
deleted file mode 100644
index fd008b6..0000000
Binary files a/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.1.nupkg and /dev/null 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
deleted file mode 100644
index c3ef176..0000000
Binary files a/Stone_Red-C-Sharp-Utilities/bin/Debug/Stone_Red-C-Sharp-Utilities.1.0.1.nupkg and /dev/null differ
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
deleted file mode 100644
index 8f2fea0..0000000
Binary files a/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.1.nupkg and /dev/null differ
diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.2.nupkg b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.2.nupkg
new file mode 100644
index 0000000..562dc50
Binary files /dev/null and b/Stone_Red-C-Sharp-Utilities/bin/Release/Stone_Red-C-Sharp-Utilities.1.0.1.2.nupkg differ
diff --git a/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.deps.json b/Stone_Red-C-Sharp-Utilities/bin/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.deps.json
index f993230..b02a640 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.1": {
+ "Stone_Red-C-Sharp-Utilities/1.0.1.2": {
"runtime": {
"Stone_Red-C-Sharp-Utilities.dll": {}
}
@@ -15,7 +15,7 @@
}
},
"libraries": {
- "Stone_Red-C-Sharp-Utilities/1.0.1.1": {
+ "Stone_Red-C-Sharp-Utilities/1.0.1.2": {
"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 a1cba6a..e30c258 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 36b3268..6a4bda6 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 3fcfbdc..e8cf7be 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
@@ -77,6 +77,20 @@
+
+
+ Converts bool to int.
+
+
+
+
+
+
+ Converts bool to int.
+
+
+
+
Console Extentions
@@ -245,7 +259,15 @@
- Removes all invalid chars from file name
+ Removes all invalid chars from the specified string
+
+
+
+
+
+
+
+ Removes all invalid chars from the specified string
@@ -268,5 +290,12 @@
+
+
+ Uses the correct newline string defined for this environment.
+
+
+
+
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
index 019dde3..414024e 100644
--- 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
@@ -8,7 +8,7 @@
LICENSE
https://aka.ms/deprecateLicenseUrl
Adds useful methods
- Console, Table, Print
+ ExtensionMethods, Methods, Extention, Console, Table, Print, C#
diff --git a/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.1.2.nuspec b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.1.2.nuspec
new file mode 100644
index 0000000..9f36bbf
--- /dev/null
+++ b/Stone_Red-C-Sharp-Utilities/obj/Release/Stone_Red-C-Sharp-Utilities.1.0.1.2.nuspec
@@ -0,0 +1,22 @@
+
+
+
+ Stone_Red-C-Sharp-Utilities
+ 1.0.1.2
+ Stone_Red
+ false
+ LICENSE
+ https://aka.ms/deprecateLicenseUrl
+ Adds useful methods
+ ExtensionMethods, Methods, Extention, Console, Table, Print, C#
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Stone_Red-C-Sharp-Utilities/obj/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 d52a6c7..b9d704b 100644
--- a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs
+++ b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.AssemblyInfo.cs
@@ -14,11 +14,11 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Stone_Red")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Adds useful methods")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1.1")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1.1")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1.2")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1.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.1.1")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.1.2")]
[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 ad772c6..c44df1d 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 @@
-bedbe864b47b33264dd1a74cec3ab965f23ecb76
+79d53500d0cda912836247a99f43baf59dc39d8e
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
index ff50978..dde9447 100644
Binary files a/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.assets.cache 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.csprojAssemblyReference.cache b/Stone_Red-C-Sharp-Utilities/obj/Release/netstandard2.1/Stone_Red-C-Sharp-Utilities.csprojAssemblyReference.cache
index 528c0a2..be906f3 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 a1cba6a..e30c258 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 36b3268..6a4bda6 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 29dfebd..ccf734b 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.1",
+ "version": "1.0.1.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",
@@ -14,10 +14,12 @@
"outputPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
- "C:\\Microsoft\\Xamarin\\NuGet\\"
+ "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"
],
@@ -58,7 +60,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.104\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.202\\RuntimeIdentifierGraph.json"
}
}
}
diff --git a/Stone_Red-C-Sharp-Utilities/obj/Stone_Red-C-Sharp-Utilities.csproj.nuget.g.props b/Stone_Red-C-Sharp-Utilities/obj/Stone_Red-C-Sharp-Utilities.csproj.nuget.g.props
index 76dea2a..84dcedc 100644
--- a/Stone_Red-C-Sharp-Utilities/obj/Stone_Red-C-Sharp-Utilities.csproj.nuget.g.props
+++ b/Stone_Red-C-Sharp-Utilities/obj/Stone_Red-C-Sharp-Utilities.csproj.nuget.g.props
@@ -5,12 +5,14 @@
NuGet
$(MSBuildThisFileDirectory)project.assets.json
$(UserProfile)\.nuget\packages\
- C:\Users\David\.nuget\packages\;C:\Microsoft\Xamarin\NuGet\
+ C:\Users\David\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\
PackageReference
- 5.8.1
+ 5.9.1
-
+
+
+
$(MSBuildAllProjects);$(MSBuildThisFileFullPath)
diff --git a/Stone_Red-C-Sharp-Utilities/obj/project.assets.json b/Stone_Red-C-Sharp-Utilities/obj/project.assets.json
index f032948..475052e 100644
--- a/Stone_Red-C-Sharp-Utilities/obj/project.assets.json
+++ b/Stone_Red-C-Sharp-Utilities/obj/project.assets.json
@@ -9,10 +9,11 @@
},
"packageFolders": {
"C:\\Users\\David\\.nuget\\packages\\": {},
- "C:\\Microsoft\\Xamarin\\NuGet\\": {}
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
+ "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {}
},
"project": {
- "version": "1.0.1.1",
+ "version": "1.0.1.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",
@@ -21,10 +22,12 @@
"outputPath": "C:\\Users\\David\\Google Drive\\Programmieren\\Stone_Red-C-Sharp-Utilities\\Stone_Red-C-Sharp-Utilities\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
- "C:\\Microsoft\\Xamarin\\NuGet\\"
+ "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"
],
@@ -65,7 +68,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.104\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.202\\RuntimeIdentifierGraph.json"
}
}
}
diff --git a/Stone_Red-C-Sharp-Utilities/obj/project.nuget.cache b/Stone_Red-C-Sharp-Utilities/obj/project.nuget.cache
index 56f629e..e03bb2a 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": "OCorf4dA0laiwZvXM3MOab9IJ1fDO9ZjZiu5LzBWWVhaWliIFQdh1aRWHcfoxyrHUqXL1v73DMUfIxv/J9Xz1Q==",
+ "dgSpecHash": "W2mmaVJ9QVB/ybXqInWb/ntCpfIusOdp99Jf4Ov7013vN7WF0Qb5g4C67ENTi26kCRu7OFGJrygEmUHgRu1v0Q==",
"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": [],