Skip to content

Commit

Permalink
Added missing member to interface IConsole.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Latency committed Mar 18, 2020
1 parent 120c668 commit 1e71cb8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 1 deletion.
Binary file removed Artifacts/ReadLine.2.1.3.nupkg
Binary file not shown.
Binary file added Artifacts/ReadLine.2.1.4.nupkg
Binary file not shown.
2 changes: 2 additions & 0 deletions ReadLine.Tests/Abstractions/Console2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ namespace ReadLine.Tests.Abstractions
{
internal class Console2 : IConsole
{
public bool PasswordMode { get; set; }

public int CursorLeft { get; private set; }

public int CursorTop { get; private set; }
Expand Down
1 change: 1 addition & 0 deletions ReadLine/Abstractions/IConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ namespace ReadLine.Abstractions
{
public interface IConsole
{
bool PasswordMode { get; set; }
int CursorLeft { get; }
int CursorTop { get; }
int BufferWidth { get; }
Expand Down
2 changes: 1 addition & 1 deletion ReadLine/ReadLine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<AssemblyOriginatorKeyFile>snKey.snk</AssemblyOriginatorKeyFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReleaseNotes>Updated to support .NET Standard v2.0 / Core 2.2 &amp; 3.0 / Framework v4.5 - v4.8</PackageReleaseNotes>
<Version>2.1.3</Version>
<Version>2.1.4</Version>
<Description>A GNU-Readline like library for .NET</Description>
<ArtifactsDirName>artifacts</ArtifactsDirName>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down

0 comments on commit 1e71cb8

Please sign in to comment.