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;