diff --git a/monoCsharpForms/.conf/deps.json b/monoCsharpForms/.conf/deps.json index 20c69283c..ddd26f1f1 100644 --- a/monoCsharpForms/.conf/deps.json +++ b/monoCsharpForms/.conf/deps.json @@ -2,10 +2,9 @@ "packages": [ "openssh-client", "sshpass", - "msbuild", "nuget" ], "installDepsScripts": [ - ".conf/installDepsScripts/install-mono-devel.sh" + ".conf/installDepsScripts/installMonoDevel.sh" ] } diff --git a/monoCsharpForms/.conf/install-deps-scripts/install-mono-devel.sh b/monoCsharpForms/.conf/installDepsScripts/installMonoDevel.sh similarity index 80% rename from monoCsharpForms/.conf/install-deps-scripts/install-mono-devel.sh rename to monoCsharpForms/.conf/installDepsScripts/installMonoDevel.sh index a8be83331..c1f52dbbb 100755 --- a/monoCsharpForms/.conf/install-deps-scripts/install-mono-devel.sh +++ b/monoCsharpForms/.conf/installDepsScripts/installMonoDevel.sh @@ -17,7 +17,8 @@ if [ "$source" != "https://download.mono-project.com/repo/ubuntu" ]; then sudo apt install ca-certificates gnupg -y # Get and install mono signing key and repository - sudo gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF -y + sudo gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF + echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list # Remove the mono-devel installation that doesn't come from the Microsoft source sudo apt-get remove $package -y @@ -30,4 +31,4 @@ fi sudo apt update -y # Install the mono-devel that come from the Microsoft source -sudo apt-get install $package -y \ No newline at end of file +sudo apt-get install $package msbuild -y \ No newline at end of file