#!/bin/bash set -e # compiler tout dotnet build -c Release dotnet publish -c Release src/isnd dotnet publish -c Release src/isn # MAJ du serveur sudo systemctl stop isnd sudo cp -a src/isnd/bin/Release/net10.0/publish/* /srv/www/isnd sudo systemctl start isnd # MAJ du client sudo cp -a src/isn/bin/Release/net10.0/* /usr/local/lib/isn sudo chown -R root:root /usr/local/lib/isn