Skip to content

Commit

Permalink
Merge pull request #15 from smdn/releases/Smdn.Fundamental.Stream-3.0…
Browse files Browse the repository at this point in the history
….2-1645366481

Release main/Smdn.Fundamental.Stream-3.0.2
  • Loading branch information
smdn authored Feb 20, 2022
2 parents d1a2118 + 63f6579 commit 7c76574
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Smdn.Fundamental.Stream.dll (Smdn.Fundamental.Stream-3.0.1 (net45))
// Smdn.Fundamental.Stream.dll (Smdn.Fundamental.Stream-3.0.2)
// Name: Smdn.Fundamental.Stream
// AssemblyVersion: 3.0.1.0
// InformationalVersion: 3.0.1 (net45)
// AssemblyVersion: 3.0.2.0
// InformationalVersion: 3.0.2+d1a21184e7ae3f93d7ec2857d6ec2ae152e5f517
// TargetFramework: .NETFramework,Version=v4.5
// Configuration: Release

Expand Down Expand Up @@ -123,6 +123,7 @@ public override long Seek(long offset, SeekOrigin origin) {}
public override void SetLength(long @value) {}
object ICloneable.Clone() {}
public override void Write(byte[] buffer, int offset, int count) {}
public override Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken = default) {}
}
}

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Smdn.Fundamental.Stream.dll (Smdn.Fundamental.Stream-3.0.1 (netstandard1.6))
// Smdn.Fundamental.Stream.dll (Smdn.Fundamental.Stream-3.0.2)
// Name: Smdn.Fundamental.Stream
// AssemblyVersion: 3.0.1.0
// InformationalVersion: 3.0.1 (netstandard1.6)
// AssemblyVersion: 3.0.2.0
// InformationalVersion: 3.0.2+d1a21184e7ae3f93d7ec2857d6ec2ae152e5f517
// TargetFramework: .NETStandard,Version=v1.6
// Configuration: Release

Expand Down Expand Up @@ -120,6 +120,7 @@ public override int ReadByte() {}
public override long Seek(long offset, SeekOrigin origin) {}
public override void SetLength(long @value) {}
public override void Write(byte[] buffer, int offset, int count) {}
public override Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken = default) {}
}
}

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Smdn.Fundamental.Stream.dll (Smdn.Fundamental.Stream-3.0.1 (netstandard2.1))
// Smdn.Fundamental.Stream.dll (Smdn.Fundamental.Stream-3.0.2)
// Name: Smdn.Fundamental.Stream
// AssemblyVersion: 3.0.1.0
// InformationalVersion: 3.0.1 (netstandard2.1)
// AssemblyVersion: 3.0.2.0
// InformationalVersion: 3.0.2+d1a21184e7ae3f93d7ec2857d6ec2ae152e5f517
// TargetFramework: .NETStandard,Version=v2.1
// Configuration: Release

Expand Down Expand Up @@ -118,11 +118,14 @@ public override void Flush() {}
protected long GetRemainderLength() {}
public override int Read(byte[] buffer, int offset, int count) {}
public override Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken) {}
public override ValueTask<int> ReadAsync(Memory<byte> buffer, CancellationToken cancellationToken = default) {}
public override int ReadByte() {}
public override long Seek(long offset, SeekOrigin origin) {}
public override void SetLength(long @value) {}
object ICloneable.Clone() {}
public override void Write(byte[] buffer, int offset, int count) {}
public override Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken = default) {}
public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken = default) {}
}
}

0 comments on commit 7c76574

Please sign in to comment.