Anyone here good with #mono? I could now build #FOCA (use: https://github.com/ljrk0/FOCA/tree/linux) successfully on #Linux, after getting friendly help on #msbuild errors by @rainer (make sure the env var `VERSION` is unset).
I could now start an #mssql database running in a #podman #container :
```
$ podman run \
-e 'MSSQL_SA_PASSWORD=Iwonttellyou1234' \
-e "MSSQL_PID=Express" \
-e "ACCEPT_EULA=Y" \
-p 1433:1433 \
--rm \
mcr.microsoft.com/mssql/server:2022-latest
```
While the connection dialog (https://github.com/rusanu/dataconnectiondialog) wouldn't allow me to select SQL Server Authentication initially, editing the `FOCA.exe.config` to set `Integrated Security=false` in `connectionString` (which allows using something different than Windows Authentication/NTLM) fixed that issue.
Unfortunately, after logging in with user name to "SA" and logging in with the password, it instantly crashes. Starting it again, it instantly hangs. It does work through #wine though.
#mono #Foca #linux #msbuild #mssql #podman #container #wine