a simple dotnet core program that allows you to track auctions on yahoo auctions japan, written in c#.
Go to file
Lynne Megido 518639b2e8
added a quick start for the gamers amongst us
2020-09-01 17:25:39 +10:00
.vscode i guess windows changed all the file permissions or something i don't even know anymore 2020-09-01 15:24:57 +10:00
.gitignore windows specific bullshit 2020-09-01 15:19:32 +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 replaced outdated 'destroy's with 'dispose' 2020-09-01 17:12:17 +10:00
build.sh added a build.sh because i'm lazy 2020-09-01 17:16:42 +10:00
buypeeb.csproj fixed the dotnet thingy 2020-09-01 17:13:08 +10:00
readme.md added a quick start for the gamers amongst us 2020-09-01 17:25:39 +10:00
ui.glade custom dialogue for adding items 2020-09-01 15:24:23 +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

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

running

dotnet

dotnet run

mono

mono ./BuypeebApp.exe