a simple dotnet core program that allows you to track auctions on yahoo auctions japan, written in c#.
Go to file
Lynne Megido 2da88f92f6
finally implemented sortinggit diff
2020-09-06 14:39:30 +10:00
.vscode may as well 2020-09-04 00:46:44 +10:00
ui finally implemented sortinggit diff 2020-09-06 14:39:30 +10:00
.gitignore now you can add notes 2020-09-06 13:33:03 +10:00
AddItemDialogue.cs a working custom add dialogue! 2020-09-01 19:58:35 +10:00
BuypeebApp.cs stript #anchors from urls 2020-09-04 21:31:09 +10:00
LICENSE forgot to add the license oops 2020-09-01 00:02:41 +10:00
MainWindow.cs finally implemented sortinggit diff 2020-09-06 14:39:30 +10:00
Settings.cs finally implemented sortinggit diff 2020-09-06 14:39:30 +10:00
YahooAuctionsItem.cs finally implemented sortinggit diff 2020-09-06 14:39:30 +10:00
build.sh new build and release scripts 2020-09-01 19:01:36 +10:00
buypeeb.csproj implemented csv export, fixed broken msgboxes 2020-09-05 15:02:37 +10:00
readme.md sorry mono :c 2020-09-06 04:55:54 +10:00
release.sh new build and release scripts 2020-09-01 19:01:36 +10:00

buypeeb

i figured, may as well try and learn c#

0uo

quick start (arch linux)

git clone https://git.bune.city/lynnesbian/buypeeb-cs
cd buypeeb-cs
sudo pacman -S dotnet-sdk
dotnet run

installing prerequisites

you will need either:

debian

dotnet

follow these instructions to add the dotnet repo and install dotnet-sdk.

mono

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

sudo apt install mono-devel gtk-sharp3

arch linux

dotnet

sudo pacman -S dotnet-sdk

mono

sudo pacman -S mono gtk-sharp-3

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

i have no idea how to install mono with gtksharp properly on windows, and believe me i tried


compiling

dotnet

dotnet build

mono

it doesn't actually build with mono anymore because mono's C# version is too old, and these instructions are wrong anyway, but it's something like

mcs -pkg:gtk-sharp-3.0 -resource:ui/main.glade -resource:ui/add.glade -resource:ui/settings.glade *.cs

running

dotnet

dotnet run

mono

mono ./BuypeebApp.exe