Skip to content

Commit

Permalink
AppLoader: Bump nethost port to .NET 8.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
julianxhokaxhiu committed Nov 13, 2024
1 parent 1cc221c commit 3e27a80
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .iss/CodeDependencies.iss
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ var
IsProductInstalled: Boolean;
begin
try
IsProductInstalled := Dependency_IsNetCoreInstalled('Microsoft.WindowsDesktop.App 8.0.10')
IsProductInstalled := Dependency_IsNetCoreInstalled('Microsoft.WindowsDesktop.App 8.0.11')
except
IsProductInstalled := False
end;
Expand All @@ -263,8 +263,8 @@ begin
if not IsProductInstalled then begin
Dependency_Add('dotnet80desktop' + Dependency_ArchSuffix + '.exe',
'/lcid ' + IntToStr(GetUILanguage) + ' /passive /norestart ' + Dependency_SilentParameter('', '/quiet'),
'.NET Desktop Runtime 8.0.10' + Dependency_ArchTitle,
Dependency_String('https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/8.0.10/windowsdesktop-runtime-8.0.10-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/8.0.10/windowsdesktop-runtime-8.0.10-win-x64.exe'),
'.NET Desktop Runtime 8.0.11' + Dependency_ArchTitle,
Dependency_String('https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/8.0.11/windowsdesktop-runtime-8.0.11-win-x86.exe', 'https://dotnetcli.azureedge.net/dotnet/WindowsDesktop/8.0.11/windowsdesktop-runtime-8.0.11-win-x64.exe'),
'', False, False);
end;
end;
Expand Down
2 changes: 1 addition & 1 deletion AppLoader/.vcpkg/ports/nethost/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO dotnet/runtime
REF "v${VERSION}"
SHA512 39ef79286fb4d30fb5fb803815e491113e56494daf3f5e296de4d456c87d09a743698b21bd980876604196f4d78f2232f43221e47caacf09f09a1345d7f0943a
SHA512 bc6e78b4696e81888010cb60d602675d6809a8731aa64cad549e3357beb63531d1743edef3321f13a8a58a733dc57599431b8a9790f0430137e0d09575856dda
HEAD_REF master
PATCHES
0001-nethost-cmakelists.patch
Expand Down
2 changes: 1 addition & 1 deletion AppLoader/.vcpkg/ports/nethost/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nethost",
"version": "8.0.10",
"version": "8.0.11",
"description": "Provides a set of APIs that can be used to host .NET Core (dotnet)",
"homepage": "https://github.com/dotnet/runtime/tree/main/src/native/corehost/nethost",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion AppLoader/.vcpkg/versions/baseline.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"default": {
"nethost": {
"baseline": "8.0.10",
"baseline": "8.0.11",
"port-version": 0
},
"stackwalker": {
Expand Down
2 changes: 1 addition & 1 deletion AppLoader/.vcpkg/versions/n-/nethost.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"versions": [
{
"version": "8.0.10",
"version": "8.0.11",
"path": "$/ports/nethost"
}
]
Expand Down
2 changes: 1 addition & 1 deletion AppLoader/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
{
"name": "nethost",
"version": "8.0.10",
"version": "8.0.11",
"port-version": 0
},
{
Expand Down

0 comments on commit 3e27a80

Please sign in to comment.