diff --git a/JustArchiNET.Madness/PathMadness/Path.cs b/JustArchiNET.Madness/PathMadness/Path.cs index 05cf817..2b2dee0 100644 --- a/JustArchiNET.Madness/PathMadness/Path.cs +++ b/JustArchiNET.Madness/PathMadness/Path.cs @@ -65,6 +65,10 @@ public static class Path { [Pure] public static string GetFullPath(string path) => System.IO.Path.GetFullPath(path); + [ContractAnnotation("=>notnull")] + [MadnessType(EMadnessType.Proxy)] + public static string GetRandomFileName() => System.IO.Path.GetRandomFileName(); + #if NETSTANDARD2_1_OR_GREATER [MadnessType(EMadnessType.Proxy)] public static string GetRelativePath(string relativeTo, string path) => System.IO.Path.GetRelativePath(relativeTo, path);