diff --git a/src/SharpCompress/Common/ExtractionOptions.cs b/src/SharpCompress/Common/ExtractionOptions.cs index 7f6e1efc..ef9848af 100644 --- a/src/SharpCompress/Common/ExtractionOptions.cs +++ b/src/SharpCompress/Common/ExtractionOptions.cs @@ -1,4 +1,6 @@ -namespace SharpCompress.Common +using System; + +namespace SharpCompress.Common { public class ExtractionOptions { @@ -29,6 +31,10 @@ /// public delegate void SymbolicLinkWriterDelegate(string sourcePath, string targetPath); - public SymbolicLinkWriterDelegate WriteSymbolicLink; + public SymbolicLinkWriterDelegate WriteSymbolicLink = + (sourcePath, targetPath) => + { + Console.WriteLine($"Could not write symlink {sourcePath} -> {targetPath}, for more information please see https://github.com/dotnet/runtime/issues/24271"); + }; } } \ No newline at end of file