File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 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'" >
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments