Imported Upstream version 5.10.0.47

Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-01-24 17:04:36 +00:00
parent 88ff76fe28
commit e46a49ecf1
5927 changed files with 226314 additions and 129848 deletions

View File

@ -17,6 +17,7 @@
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
namespace ICSharpCode.SharpZipLib
{
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class SharpZipBaseException : System.ApplicationException
{
public SharpZipBaseException() { }
@ -26,12 +27,14 @@ namespace ICSharpCode.SharpZipLib
}
namespace ICSharpCode.SharpZipLib.BZip2
{
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class BZip2
{
public BZip2() { }
public static void Compress(System.IO.Stream instream, System.IO.Stream outstream, int blockSize) { }
public static void Decompress(System.IO.Stream instream, System.IO.Stream outstream) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class BZip2Constants
{
internal BZip2Constants() { }
@ -47,11 +50,13 @@ namespace ICSharpCode.SharpZipLib.BZip2
public static readonly int RUNA;
public static readonly int RUNB;
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class BZip2Exception : ICSharpCode.SharpZipLib.SharpZipBaseException
{
public BZip2Exception() { }
public BZip2Exception(string message) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class BZip2InputStream : System.IO.Stream
{
public BZip2InputStream(System.IO.Stream stream) { }
@ -69,6 +74,7 @@ namespace ICSharpCode.SharpZipLib.BZip2
public override void Write(byte[] array, int offset, int count) { }
public override void WriteByte(byte val) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class BZip2OutputStream : System.IO.Stream
{
public BZip2OutputStream(System.IO.Stream stream) { }
@ -91,6 +97,7 @@ namespace ICSharpCode.SharpZipLib.BZip2
}
namespace ICSharpCode.SharpZipLib.Checksums
{
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class Adler32 : ICSharpCode.SharpZipLib.Checksums.IChecksum
{
public Adler32() { }
@ -100,6 +107,7 @@ namespace ICSharpCode.SharpZipLib.Checksums
public void Update(byte[] buf, int off, int len) { }
public void Update(int bval) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class Crc32 : ICSharpCode.SharpZipLib.Checksums.IChecksum
{
public Crc32() { }
@ -109,6 +117,7 @@ namespace ICSharpCode.SharpZipLib.Checksums
public void Update(byte[] buf, int off, int len) { }
public void Update(int bval) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial interface IChecksum
{
long Value { get; }
@ -117,6 +126,7 @@ namespace ICSharpCode.SharpZipLib.Checksums
void Update(byte[] buf, int off, int len);
void Update(int bval);
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class StrangeCRC : ICSharpCode.SharpZipLib.Checksums.IChecksum
{
public StrangeCRC() { }
@ -129,13 +139,17 @@ namespace ICSharpCode.SharpZipLib.Checksums
}
namespace ICSharpCode.SharpZipLib.Core
{
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DirectoryEventArgs : ICSharpCode.SharpZipLib.Core.ScanEventArgs
{
public DirectoryEventArgs(string name, bool hasMatchingFiles) : base (default(string)) { }
public bool HasMatchingFiles { get { throw null; } }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void DirectoryFailureDelegate(object sender, ICSharpCode.SharpZipLib.Core.ScanFailureEventArgs e);
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void FileFailureDelegate(object sender, ICSharpCode.SharpZipLib.Core.ScanFailureEventArgs e);
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class FileSystemScanner
{
public ICSharpCode.SharpZipLib.Core.DirectoryFailureDelegate DirectoryFailure;
@ -152,15 +166,18 @@ namespace ICSharpCode.SharpZipLib.Core
public void OnProcessFile(string file) { }
public void Scan(string directory, bool recurse) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial interface INameTransform
{
string TransformDirectory(string name);
string TransformFile(string name);
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial interface IScanFilter
{
bool IsMatch(string name);
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class NameAndSizeFilter : ICSharpCode.SharpZipLib.Core.PathFilter
{
public NameAndSizeFilter(string filter, long minSize, long maxSize) : base (default(string)) { }
@ -168,6 +185,7 @@ namespace ICSharpCode.SharpZipLib.Core
public long MinSize { get { throw null; } set { } }
public override bool IsMatch(string fileName) { throw null; }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class NameFilter
{
public NameFilter(string filter) { }
@ -178,19 +196,24 @@ namespace ICSharpCode.SharpZipLib.Core
public static bool IsValidFilterExpression(string toTest) { throw null; }
public override string ToString() { throw null; }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class PathFilter : ICSharpCode.SharpZipLib.Core.IScanFilter
{
public PathFilter(string filter) { }
public virtual bool IsMatch(string name) { throw null; }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void ProcessDirectoryDelegate(object Sender, ICSharpCode.SharpZipLib.Core.DirectoryEventArgs e);
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void ProcessFileDelegate(object sender, ICSharpCode.SharpZipLib.Core.ScanEventArgs e);
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ScanEventArgs : System.EventArgs
{
public ScanEventArgs(string name) { }
public bool ContinueRunning { get { throw null; } set { } }
public string Name { get { throw null; } }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ScanFailureEventArgs
{
public ScanFailureEventArgs(string name, System.Exception e) { }
@ -201,11 +224,13 @@ namespace ICSharpCode.SharpZipLib.Core
}
namespace ICSharpCode.SharpZipLib.Encryption
{
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public abstract partial class PkzipClassic : System.Security.Cryptography.SymmetricAlgorithm
{
protected PkzipClassic() { }
public static byte[] GenerateKeys(byte[] seed) { throw null; }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class PkzipClassicManaged : ICSharpCode.SharpZipLib.Encryption.PkzipClassic
{
public PkzipClassicManaged() { }
@ -221,6 +246,7 @@ namespace ICSharpCode.SharpZipLib.Encryption
}
namespace ICSharpCode.SharpZipLib.GZip
{
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class GZipConstants
{
internal GZipConstants() { }
@ -231,11 +257,13 @@ namespace ICSharpCode.SharpZipLib.GZip
public const int FTEXT = 1;
public static readonly int GZIP_MAGIC;
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class GZipException : ICSharpCode.SharpZipLib.SharpZipBaseException
{
public GZipException() { }
public GZipException(string message) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class GZipInputStream : ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream
{
protected ICSharpCode.SharpZipLib.Checksums.Crc32 crc;
@ -244,6 +272,7 @@ namespace ICSharpCode.SharpZipLib.GZip
public GZipInputStream(System.IO.Stream baseInputStream, int size) : base (default(System.IO.Stream)) { }
public override int Read(byte[] buf, int offset, int len) { throw null; }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class GZipOutputStream : ICSharpCode.SharpZipLib.Zip.Compression.Streams.DeflaterOutputStream
{
protected ICSharpCode.SharpZipLib.Checksums.Crc32 crc;
@ -258,12 +287,15 @@ namespace ICSharpCode.SharpZipLib.GZip
}
namespace ICSharpCode.SharpZipLib.Tar
{
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class InvalidHeaderException : ICSharpCode.SharpZipLib.Tar.TarException
{
public InvalidHeaderException() { }
public InvalidHeaderException(string msg) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public delegate void ProgressMessageHandler(ICSharpCode.SharpZipLib.Tar.TarArchive archive, ICSharpCode.SharpZipLib.Tar.TarEntry entry, string message);
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarArchive
{
protected TarArchive() { }
@ -289,6 +321,7 @@ namespace ICSharpCode.SharpZipLib.Tar
public void SetUserInfo(int userId, string userName, int groupId, string groupName) { }
public void WriteEntry(ICSharpCode.SharpZipLib.Tar.TarEntry sourceEntry, bool recurse) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarBuffer
{
public const int BlockSize = 512;
@ -312,6 +345,7 @@ namespace ICSharpCode.SharpZipLib.Tar
public void WriteBlock(byte[] block) { }
public void WriteBlock(byte[] buf, int offset) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarEntry : System.ICloneable
{
public TarEntry(ICSharpCode.SharpZipLib.Tar.TarHeader header) { }
@ -340,11 +374,13 @@ namespace ICSharpCode.SharpZipLib.Tar
public void SetNames(string userName, string groupName) { }
public void WriteEntryHeader(byte[] outbuf) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarException : ICSharpCode.SharpZipLib.SharpZipBaseException
{
public TarException() { }
public TarException(string message) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarHeader : System.ICloneable
{
public static readonly int CHKSUMLEN;
@ -419,6 +455,7 @@ namespace ICSharpCode.SharpZipLib.Tar
public static void SetValueDefaults(int userId, string userName, int groupId, string groupName) { }
public void WriteHeader(byte[] outbuf) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarInputStream : System.IO.Stream
{
protected ICSharpCode.SharpZipLib.Tar.TarBuffer buffer;
@ -452,6 +489,7 @@ namespace ICSharpCode.SharpZipLib.Tar
public void Skip(long numToSkip) { }
public override void Write(byte[] array, int offset, int count) { }
public override void WriteByte(byte val) { }
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class EntryFactoryAdapter : ICSharpCode.SharpZipLib.Tar.TarInputStream.IEntryFactory
{
public EntryFactoryAdapter() { }
@ -459,6 +497,7 @@ namespace ICSharpCode.SharpZipLib.Tar
public ICSharpCode.SharpZipLib.Tar.TarEntry CreateEntry(string name) { throw null; }
public ICSharpCode.SharpZipLib.Tar.TarEntry CreateEntryFromFile(string fileName) { throw null; }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial interface IEntryFactory
{
ICSharpCode.SharpZipLib.Tar.TarEntry CreateEntry(byte[] headerBuf);
@ -466,6 +505,7 @@ namespace ICSharpCode.SharpZipLib.Tar
ICSharpCode.SharpZipLib.Tar.TarEntry CreateEntryFromFile(string fileName);
}
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class TarOutputStream : System.IO.Stream
{
protected byte[] assemBuf;
@ -499,6 +539,7 @@ namespace ICSharpCode.SharpZipLib.Tar
}
namespace ICSharpCode.SharpZipLib.Zip
{
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public enum CompressionMethod
{
BZip2 = 11,
@ -507,6 +548,7 @@ namespace ICSharpCode.SharpZipLib.Zip
Stored = 0,
WinZipAES = 99,
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class FastZip
{
public FastZip() { }
@ -525,6 +567,7 @@ namespace ICSharpCode.SharpZipLib.Zip
Prompt = 0,
}
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class FastZipEvents
{
public ICSharpCode.SharpZipLib.Core.DirectoryFailureDelegate DirectoryFailure;
@ -537,6 +580,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public void OnProcessDirectory(string directory, bool hasMatchingFiles) { }
public void OnProcessFile(string file) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class KeysRequiredEventArgs : System.EventArgs
{
public KeysRequiredEventArgs(string name) { }
@ -544,6 +588,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public string FileName { get { throw null; } }
public byte[] Key { get { throw null; } set { } }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public sealed partial class ZipConstants
{
public const int CENATT = 36;
@ -601,6 +646,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public static string ConvertToString(byte[] data) { throw null; }
public static string ConvertToString(byte[] data, int length) { throw null; }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipEntry : System.ICloneable
{
public ZipEntry(ICSharpCode.SharpZipLib.Zip.ZipEntry e) { }
@ -630,11 +676,13 @@ namespace ICSharpCode.SharpZipLib.Zip
public object Clone() { throw null; }
public override string ToString() { throw null; }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipException : ICSharpCode.SharpZipLib.SharpZipBaseException
{
public ZipException() { }
public ZipException(string msg) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipFile : System.Collections.IEnumerable
{
public ICSharpCode.SharpZipLib.Zip.ZipFile.KeysRequiredEventHandler KeysRequired;
@ -656,6 +704,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public bool TestArchive(bool testData) { throw null; }
public delegate void KeysRequiredEventHandler(object sender, ICSharpCode.SharpZipLib.Zip.KeysRequiredEventArgs e);
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipInputStream : ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream
{
public ZipInputStream(System.IO.Stream baseInputStream) : base (default(System.IO.Stream)) { }
@ -669,6 +718,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public override int Read(byte[] destination, int index, int count) { throw null; }
public override int ReadByte() { throw null; }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipNameTransform : ICSharpCode.SharpZipLib.Core.INameTransform
{
public ZipNameTransform() { }
@ -678,6 +728,7 @@ namespace ICSharpCode.SharpZipLib.Zip
public string TransformDirectory(string name) { throw null; }
public string TransformFile(string name) { throw null; }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class ZipOutputStream : ICSharpCode.SharpZipLib.Zip.Compression.Streams.DeflaterOutputStream
{
public ZipOutputStream(System.IO.Stream baseOutputStream) : base (default(System.IO.Stream)) { }
@ -693,6 +744,7 @@ namespace ICSharpCode.SharpZipLib.Zip
}
namespace ICSharpCode.SharpZipLib.Zip.Compression
{
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class Deflater
{
public static int BEST_COMPRESSION;
@ -721,6 +773,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public void SetLevel(int lvl) { }
public void SetStrategy(ICSharpCode.SharpZipLib.Zip.Compression.DeflateStrategy strategy) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DeflaterConstants
{
public static int[] COMPR_FUNC;
@ -752,6 +805,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public const int WSIZE = 32768;
public DeflaterConstants() { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DeflaterEngine : ICSharpCode.SharpZipLib.Zip.Compression.DeflaterConstants
{
public DeflaterEngine(ICSharpCode.SharpZipLib.Zip.Compression.DeflaterPending pending) { }
@ -767,6 +821,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public void SetInput(byte[] buf, int off, int len) { }
public void SetLevel(int lvl) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DeflaterHuffman
{
public ICSharpCode.SharpZipLib.Zip.Compression.DeflaterPending pending;
@ -780,6 +835,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public void SendAllTrees(int blTreeCodes) { }
public bool TallyDist(int dist, int len) { throw null; }
public bool TallyLit(int lit) { throw null; }
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class Tree
{
public short[] freqs;
@ -798,16 +854,19 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public void WriteTree(ICSharpCode.SharpZipLib.Zip.Compression.DeflaterHuffman.Tree blTree) { }
}
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DeflaterPending : ICSharpCode.SharpZipLib.Zip.Compression.PendingBuffer
{
public DeflaterPending() { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public enum DeflateStrategy
{
Default = 0,
Filtered = 1,
HuffmanOnly = 2,
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class Inflater
{
public Inflater() { }
@ -827,6 +886,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public void SetInput(byte[] buf) { }
public void SetInput(byte[] buffer, int offset, int length) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class InflaterHuffmanTree
{
public static ICSharpCode.SharpZipLib.Zip.Compression.InflaterHuffmanTree defDistTree;
@ -834,6 +894,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
public InflaterHuffmanTree(byte[] codeLengths) { }
public int GetSymbol(ICSharpCode.SharpZipLib.Zip.Compression.Streams.StreamManipulator input) { throw null; }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class PendingBuffer
{
protected byte[] buf;
@ -855,6 +916,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression
}
namespace ICSharpCode.SharpZipLib.Zip.Compression.Streams
{
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class DeflaterOutputStream : System.IO.Stream
{
protected System.IO.Stream baseOutputStream;
@ -888,6 +950,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression.Streams
public override void Write(byte[] buf, int off, int len) { }
public override void WriteByte(byte bval) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class InflaterInputBuffer
{
public InflaterInputBuffer(System.IO.Stream stream) { }
@ -907,6 +970,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression.Streams
public int ReadRawBuffer(byte[] outBuffer, int offset, int length) { throw null; }
public void SetInflaterInput(ICSharpCode.SharpZipLib.Zip.Compression.Inflater inflater) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class InflaterInputStream : System.IO.Stream
{
protected System.IO.Stream baseInputStream;
@ -935,6 +999,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression.Streams
public override void Write(byte[] array, int offset, int count) { }
public override void WriteByte(byte val) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class OutputWindow
{
public OutputWindow() { }
@ -947,6 +1012,7 @@ namespace ICSharpCode.SharpZipLib.Zip.Compression.Streams
public void Reset() { }
public void Write(int abyte) { }
}
[System.ObsoleteAttribute("This assembly has been deprecated. Please use https://www.nuget.org/packages/SharpZipLib/ instead.")]
public partial class StreamManipulator
{
public StreamManipulator() { }

View File

@ -1 +1 @@
b06a0a4020c92b5bd5ebd5bb862d245b67ec5ba3
3ba3519beb12c6f8f84db698f983cc19b35b9319

View File

@ -8,6 +8,7 @@
[assembly:System.Reflection.AssemblyDescriptionAttribute("Command Line Parsing Utilities")]
[assembly:System.Reflection.AssemblyTitleAttribute("Mono.Options.dll")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
namespace Mono.Options

View File

@ -12,10 +12,6 @@
[assembly:System.Reflection.AssemblyTitleAttribute("SMDiagnostics.dll")]
[assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.IdentityModel, PublicKey=00000000000000000400000000000000")]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.IdentityModel.Selectors, PublicKey=00000000000000000400000000000000")]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.ServiceModel, PublicKey=00000000000000000400000000000000")]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.ServiceModel.Web, PublicKey=00000000000000000400000000000000")]
[assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.InteropServices.ComCompatibleVersionAttribute(1, 0, 3300, 0)]

View File

@ -0,0 +1 @@
d3866494fd815e8c32a5b02a4ade6c57c2607d8c

View File

@ -15,10 +15,6 @@
[assembly:System.Reflection.AssemblyTitleAttribute("System.Reactive.Core")]
[assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Reactive.Debugger, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Reactive.Experimental, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Reactive.Linq, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Reactive.PlatformServices, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
[assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]

View File

@ -16,7 +16,6 @@
[assembly:System.Reflection.AssemblyTitleAttribute("System.Reactive.Experimental")]
[assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
[assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
[assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Reactive.Debugger, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
[assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
[assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
[assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]

View File

@ -0,0 +1 @@
938fd0bbf95b13fff86cad6ef21d61c9ef51e92e

Some files were not shown because too many files have changed in this diff Show More