/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Installers/Windows/WindowsHostingBundle/DotNetCore.wxs
44 строки
4 KB
William Godbe
Update to wix5 (#62885)
18 сен 2025, 01:38
Не верифицирован
18 сен 2025, 01:38
f292245
Код
Авторство
О чём код?
<?include ..\AspNetCoreModule-Setup\IIS-Setup\include.wxi ?> <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> <Fragment> <PackageGroup Id="PG_DOTNET_REDIST_LTS_BUNDLE"> <RollbackBoundary Id="RB_DOTNET_REDIST_LTS_BUNDLE" /> <!-- OPT_NO_RUNTIME could be unset at this point, which we explicitly treat as 'false' --> <MsiPackage Id="DotNetRedistLts_arm64" SourceFile="$(DepsPath)\$(DotNetRedistLtsInstallerarm64)" Name="$(DotNetRedistLtsInstallerarm64)" Compressed="yes" Vital="yes" InstallCondition="(NativeMachine="$(NativeMachine_arm64)") AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0")"> </MsiPackage> <!-- OPT_NO_RUNTIME could be unset at this point, which we explicitly treat as 'false' --> <MsiPackage Id="DotNetRedistLts_x64" SourceFile="$(DepsPath)\$(DotNetRedistLtsInstallerx64)" Name="$(DotNetRedistLtsInstallerx64)" Compressed="yes" Vital="yes" InstallCondition="VersionNT64 AND NOT (NativeMachine="$(NativeMachine_arm64)") AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0")"> </MsiPackage> <!-- OPT_NO_X86 could be unset at this point, which we explicitly treat as 'false' --> <MsiPackage Id="DotNetRedistLts_x86" SourceFile="$(DepsPath)\$(DotNetRedistLtsInstallerx86)" Name="$(DotNetRedistLtsInstallerx86)" Compressed="yes" Vital="yes" InstallCondition="(NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0") AND (NOT OPT_NO_X86 OR OPT_NO_X86="0")"> </MsiPackage> <!-- OPT_NO_RUNTIME could be unset at this point, which we explicitly treat as 'false' --> <MsiPackage Id="DotNetRedistHost_arm64" SourceFile="$(DepsPath)\$(DotNetRedistHostInstallerarm64)" Name="$(DotNetRedistHostInstallerarm64)" Compressed="yes" Vital="yes" InstallCondition="(NativeMachine="$(NativeMachine_arm64)") AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0")"> </MsiPackage> <!-- OPT_NO_RUNTIME could be unset at this point, which we explicitly treat as 'false' --> <MsiPackage Id="DotNetRedistHost_x64" SourceFile="$(DepsPath)\$(DotNetRedistHostInstallerx64)" Name="$(DotNetRedistHostInstallerx64)" Compressed="yes" Vital="yes" InstallCondition="VersionNT64 AND NOT (NativeMachine="$(NativeMachine_arm64)") AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0")"> </MsiPackage> <!-- OPT_NO_X86 could be unset at this point, which we explicitly treat as 'false' --> <MsiPackage Id="DotNetRedistHost_x86" SourceFile="$(DepsPath)\$(DotNetRedistHostInstallerx86)" Name="$(DotNetRedistHostInstallerx86)" Compressed="yes" Vital="yes" InstallCondition="(NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0") AND (NOT OPT_NO_X86 OR OPT_NO_X86="0")"> </MsiPackage> <!-- OPT_NO_RUNTIME could be unset at this point, which we explicitly treat as 'false' --> <MsiPackage Id="DotNetRedistHostfxr_arm64" SourceFile="$(DepsPath)\$(DotNetRedistHostfxrInstallerarm64)" Name="$(DotNetRedistHostfxrInstallerarm64)" Compressed="yes" Vital="yes" InstallCondition="(NativeMachine="$(NativeMachine_arm64)") AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0")"> </MsiPackage> <!-- OPT_NO_RUNTIME could be unset at this point, which we explicitly treat as 'false' --> <MsiPackage Id="DotNetRedistHostfxr_x64" SourceFile="$(DepsPath)\$(DotNetRedistHostfxrInstallerx64)" Name="$(DotNetRedistHostfxrInstallerx64)" Compressed="yes" Vital="yes" InstallCondition="VersionNT64 AND NOT (NativeMachine="$(NativeMachine_arm64)") AND (NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0")"> </MsiPackage> <!-- OPT_NO_X86 could be unset at this point, which we explicitly treat as 'false' --> <MsiPackage Id="DotNetRedistHostfxr_x86" SourceFile="$(DepsPath)\$(DotNetRedistHostfxrInstallerx86)" Name="$(DotNetRedistHostfxrInstallerx86)" Compressed="yes" Vital="yes" InstallCondition="(NOT OPT_NO_RUNTIME OR OPT_NO_RUNTIME="0") AND (NOT OPT_NO_X86 OR OPT_NO_X86="0")"> </MsiPackage> </PackageGroup> </Fragment> </Wix>