Skip to content

Commit

Permalink
dotnet8|dotnetdesktop8: new verbs
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcenx committed Feb 20, 2024
1 parent 02a555d commit 2505d26
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions src/winetricks
Original file line number Diff line number Diff line change
Expand Up @@ -10157,6 +10157,56 @@ load_dotnetdesktop7()

#----------------------------------------------------------------

w_metadata dotnet8 dlls \
title="MS .NET Runtime 8.0 LTS" \
publisher="Microsoft" \
year="2024" \
media="download" \
file1="dotnet-runtime-8.0.2-win-x86.exe" \
installed_file1="${W_PROGRAMS_WIN}/dotnet/dotnet.exe"

load_dotnet8()
{
# Official version, see https://dotnet.microsoft.com/en-us/download/dotnet/8.0
w_download https://download.visualstudio.microsoft.com/download/pr/e4987764-bda2-4a72-8820-52605f30e899/f5b412fec80d7f4b20fc4ac7740f7279/dotnet-runtime-8.0.2-win-x86.exe b765676fc2f85cb393cabf2bef5dd118578a2a8761be97454352c0c2634957a4

w_try_cd "${W_CACHE}"/"${W_PACKAGE}"
w_try "${WINE}" "${file1}" ${W_OPT_UNATTENDED:+/quiet}

if [ "${W_ARCH}" = "win64" ]; then
# Also install the 64-bit version
w_download https://download.visualstudio.microsoft.com/download/pr/a4bc7333-6e30-4e2d-b300-0b4f23537e5b/4b81af6d46a02fba5d9ce030af438c67/dotnet-runtime-8.0.2-win-x64.exe ec10da69116d12691abcb374929cf9eec65e4607095ff1ff035989848fd1db00
w_try "${WINE}" "dotnet-runtime-8.0.2-win-x64.exe" ${W_OPT_UNATTENDED:+/quiet}
fi
}

#----------------------------------------------------------------

w_metadata dotnetdesktop8 dlls \
title="MS .NET Desktop Runtime 8.0 LTS" \
publisher="Microsoft" \
year="2024" \
media="download" \
file1="windowsdesktop-runtime-8.0.2-win-x86.exe" \
installed_file1="${W_PROGRAMS_WIN}/dotnet/dotnet.exe"

load_dotnetdesktop8()
{
# Official version, see https://dotnet.microsoft.com/en-us/download/dotnet/8.0
w_download https://download.visualstudio.microsoft.com/download/pr/9b77b480-7e32-4321-b417-a41e0f8ea952/3922bbf5538277b1d41e9b49ee443673/windowsdesktop-runtime-8.0.2-win-x86.exe 548bcca012cde72bfa68e693ee3dab175c3aa7926d3a3621c8f6f3b12904b909

w_try_cd "${W_CACHE}"/"${W_PACKAGE}"
w_try "${WINE}" "${file1}" ${W_OPT_UNATTENDED:+/quiet}

if [ "${W_ARCH}" = "win64" ]; then
# Also install the 64-bit version
w_download https://download.visualstudio.microsoft.com/download/pr/84ba33d4-4407-4572-9bfa-414d26e7c67c/bb81f8c9e6c9ee1ca547396f6e71b65f/windowsdesktop-runtime-8.0.2-win-x64.exe 52099c00372c1ef6c78878f98f6994777170c8f8556bc3b42a6c291a268ce750
w_try "${WINE}" "windowsdesktop-runtime-8.0.2-win-x64.exe" ${W_OPT_UNATTENDED:+/quiet}
fi
}

#----------------------------------------------------------------

w_metadata dotnet_verifier dlls \
title="MS .NET Verifier" \
publisher="Microsoft" \
Expand Down

0 comments on commit 2505d26

Please sign in to comment.