a simple dotnet core program that allows you to track auctions on yahoo auctions japan, written in c#.
Go to file
Lynne Megido 69ac6a8822 and there you have it 2020-09-01 15:18:15 +10:00
.gitignore work on list entry handling stuff 2020-09-01 00:20:56 +10:00
BuypeebApp.cs i hope this actually goes somewhere and i don't abandon it a few days in 2020-08-29 02:04:37 +10:00
LICENSE forgot to add the license oops 2020-09-01 00:02:41 +10:00
MainWindow.cs you can press enter to send in the text :O 2020-09-01 00:34:31 +10:00
readme.md and there you have it 2020-09-01 15:18:15 +10:00
ui.glade work on list entry handling stuff 2020-09-01 00:20:56 +10:00

Buypeeb

i figured, may as well try and learn c#

0uo

installing

you need mono and gtk sharp 3

installing on debian

the packages you'll need are mono-devel and gtk-sharp3, so:

sudo apt install mono-devel gtk-sharp3

installing on arch

sudo pacman -S mono gtk-sharp-3

installing on windows

  • download and install ".NET Core SDK" from this page
  • run dotnet build - this should pull in gtk3 automatically - if not, you'll need to install it yourself

this will install and use .NET core instead of mono but as far as i know it should be fine

compiling

linux

mcs -pkg:gtk-sharp-3.0 -resource:ui.glade *.cs

windows

dotnet build

running

linux

mono ./BuypeebApp.exe

windows

dotnet run