Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/linker
diff options
context:
space:
mode:
authorMike Voorhees <michaelv@unity3d.com>2017-08-22 20:13:52 +0300
committerMarek Safar <marek.safar@gmail.com>2017-08-23 00:42:23 +0300
commit1823bc3aa353319892d2d4c7dc0c543b11b204ed (patch)
tree2a063ef54f0c1cb0609f04019faf5e1d9934c4e2 /linker
parent51804fad6fe911cfa9f219a2ad16e07e15e0fb4f (diff)
Sync up with NiceIO at https://github.com/lucasmeijer/NiceIO/commit/30c78865094183c4aebe9f2094faa4f4497a1fcd
Diffstat (limited to 'linker')
-rw-r--r--linker/Tests/Extensions/NiceIO.cs33
1 files changed, 32 insertions, 1 deletions
diff --git a/linker/Tests/Extensions/NiceIO.cs b/linker/Tests/Extensions/NiceIO.cs
index 2bded17f1..69b6f30f4 100644
--- a/linker/Tests/Extensions/NiceIO.cs
+++ b/linker/Tests/Extensions/NiceIO.cs
@@ -1,4 +1,30 @@
-using System;
+// The MIT License(MIT)
+// =====================
+//
+// Copyright © `2015-2017` `Lucas Meijer`
+//
+// Permission is hereby granted, free of charge, to any person
+// obtaining a copy of this software and associated documentation
+// files (the “Software”), to deal in the Software without
+// restriction, including without limitation the rights to use,
+// copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the
+// Software is furnished to do so, subject to the following
+// conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+// OTHER DEALINGS IN THE SOFTWARE.
+
+using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
@@ -283,6 +309,11 @@ namespace Mono.Linker.Tests.Extensions
return sb.ToString();
}
+ public static implicit operator string(NPath path)
+ {
+ return path.ToString();
+ }
+
static char Slash(SlashMode slashMode)
{
switch (slashMode)