Skip to content

Commit 1f2f641

Browse files
committed
fixed murkup
1 parent 8a20ac0 commit 1f2f641

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CommandAppInterface/CommandAppInterface.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<Title>CommandAppInterface</Title>
88
<Company>$(Authors)</Company>
99
<Authors>yoz75</Authors>
10-
<AssemblyVersion>1.3.0</AssemblyVersion>
10+
<AssemblyVersion>1.3.1</AssemblyVersion>
1111
<Copyright>copyright by yoz75</Copyright>
1212
<Description>Small library for easy command interface creating</Description>
1313
<PackageProjectUrl></PackageProjectUrl>
1414
<PackageReadmeFile>README.md</PackageReadmeFile>
1515
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1616
<RepositoryUrl>https://github.com/Yoz75/CommandAppInterface</RepositoryUrl>
17-
<Version>1.3.0</Version>
17+
<Version>1.3.1</Version>
1818
</PropertyGroup>
1919

2020
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

CommandAppInterface/Sources/AppInterface.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class AppInterface
1616
private Dictionary<string, Action<string>> CommandCallers = new();
1717

1818
//Yeah, I use build number as patch version😎😎😎
19-
private readonly Version CAIVersion = new(1, 3, 0);
19+
private readonly Version CAIVersion = new(1, 3, 1);
2020

2121
private bool IsEnded = false;
2222

@@ -146,7 +146,7 @@ public void Quit()
146146

147147
public void WriteInfo(string message, string prompt = "Info")
148148
{
149-
AnsiConsole.MarkupLine($"[green]{prompt}:[/]\n{message}");
149+
AnsiConsole.MarkupLineInterpolated($"[green]{prompt}:[/]\n{message}");
150150
}
151151

152152
public void WriteInfo(Spectre.Console.Rendering.IRenderable renderable)

0 commit comments

Comments
 (0)