From 6b30a534fd9bd7ea4026071df3f2b42836d497e0 Mon Sep 17 00:00:00 2001 From: JFronny <33260128+JFronny@users.noreply.github.com> Date: Sat, 13 Jun 2020 12:58:04 +0200 Subject: [PATCH] Things for UpTool2 --- Lemonade/Lemonade.csproj | 11 ++++++++++- Lemonade/TransactionScreen.cs | 1 + 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Lemonade/Lemonade.csproj b/Lemonade/Lemonade.csproj index 8659fff..4c1e6dc 100644 --- a/Lemonade/Lemonade.csproj +++ b/Lemonade/Lemonade.csproj @@ -3,8 +3,17 @@ Exe netcoreapp3.1 + false + 1.0.* + + + + if exist "$(SolutionDir)Data\pkgtool.exe" ($(SolutionDir)Data\pkgtool.exe build --noLogo --binDir .) else if exist "%appdata%\UpTool2\Apps\0e35d154-d0d3-45e0-b080-62f521263a44\app\pkgtool.exe" ("%appdata%\UpTool2\Apps\0e35d154-d0d3-45e0-b080-62f521263a44\app\pkgtool.exe" build --noLogo --binDir .) else echo Cound not find Package build tools, skipping + + + if [[ -f "$(SolutionDir)Data/pkgtool.exe" ]]; then $(SolutionDir)Data/pkgtool.exe build --noLogo --binDir .; else echo Cound not find Package build tools, skipping; fi + - diff --git a/Lemonade/TransactionScreen.cs b/Lemonade/TransactionScreen.cs index 3878653..0f34034 100644 --- a/Lemonade/TransactionScreen.cs +++ b/Lemonade/TransactionScreen.cs @@ -22,6 +22,7 @@ namespace Lemonade private PlayerState _player; private int _signCost; + //TODO restore last transaction if budget allows public TransactionScreen(Settings set) : base(200, 20, ConsoleColor.Black, set.Color) { ContentPanel.ForeColor = ConsoleColor.DarkGray;