buypeeb-cs/readme.md

1005 B

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