A photobooth application in C#
Go to file
Mike Nolan b069275421 Photobooth inital 2024-06-09 10:16:10 -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 Photobooth inital 2024-06-09 10:16:10 -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 (for Wii-linux-ngx) (just mono)

    cd PhotoBooth.Mono
    dotnet build -o out -c Release
    mono out/*.exe