diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56b16abf..e47bdd68 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,11 +12,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore - name: Build diff --git a/App/App.csproj b/App/App.csproj index d502436d..722b00a3 100644 --- a/App/App.csproj +++ b/App/App.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 0.1.1-beta aimenux true @@ -20,16 +20,16 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/Lib/Helpers/ConsoleHelper.cs b/Lib/Helpers/ConsoleHelper.cs index b569f7b0..e50b8ed7 100644 --- a/Lib/Helpers/ConsoleHelper.cs +++ b/Lib/Helpers/ConsoleHelper.cs @@ -1,5 +1,6 @@ using System.Collections.Generic; using System.IO; +using System.Text; using Lib.Models; using Newtonsoft.Json; using Newtonsoft.Json.Linq; @@ -9,10 +10,15 @@ namespace Lib.Helpers { public class ConsoleHelper : IConsoleHelper { + public ConsoleHelper() + { + System.Console.OutputEncoding = Encoding.UTF8; + } + public void RenderTitle(string text) { AnsiConsole.WriteLine(); - AnsiConsole.Write(new FigletText(text).LeftAligned()); + AnsiConsole.Write(new FigletText(text)); AnsiConsole.WriteLine(); } diff --git a/Lib/Lib.csproj b/Lib/Lib.csproj index de58e46c..718cba61 100644 --- a/Lib/Lib.csproj +++ b/Lib/Lib.csproj @@ -5,16 +5,16 @@ - - - - - - + + + + + + - - - + + + diff --git a/README.md b/README.md index d7d586ad..6a5d9837 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Providing net global tool in order to manage acumatica website creation and dele > ![ListSitesScreen](Screenshots/ListSitesScreen.png) > -**`Tools`** : vs19, net 6.0 +**`Tools`** : net 8.0 ---