A photobooth application in C#
Go to file
Mike Nolan cb41a366a6 does not work on ppc due to flashcap 2024-06-09 11:39:00 -05:00
PhotoBooth Photobooth inital 2024-06-09 10:16:10 -05:00
PhotoBooth.Mono Photobooth inital 2024-06-09 10:16:10 -05:00
PhotoBooth.Net8 Photobooth inital 2024-06-09 10:16:10 -05:00
.gitignore Photobooth inital 2024-06-09 10:16:10 -05:00
LICENSE.md Photobooth inital 2024-06-09 10:16:10 -05:00
README.md does not work on ppc due to flashcap 2024-06-09 11:39:00 -05:00

README.md

A simple photobooth app writen in C#

  • requires .NET sdk 8.0 to build

To Build as a single app (for linux)

    cd PhotoBooth.Net8
    dotnet publish -c Release -o out -r linux-x64 --self-contained -p:PublishReadyToRun=true -p:PublishSingleFile=true
    cd out
    ./PhotoBooth.Net8

To build as .NET Framework 4.8 app for .NET Framework or Mono

    cd PhotoBooth.Mono
    dotnet build -o out -c Release
    mono out/*.exe
  • USES SDL2-CS

  • For Linux SDL2 and SDL2_image are required

  • Debian, Ubuntu (to run it)

sudo apt install libsdl2-dev libsdl2-image-dev