-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDotNet_ASP_NET_v5.0.13_x86.wxs
29 lines (27 loc) · 1.34 KB
/
DotNet_ASP_NET_v5.0.13_x86.wxs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
xmlns:netfx="http://wixtoolset.org/schemas/v4/wxs/netfx"
xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
<Fragment>
<netfx:DotNetCoreSearch
RuntimeType="aspnet"
Platform="x86"
MajorVersion="5"
Variable="DOT_NET_VER" />
<PackageGroup Id="DotNet_ASP_NET_v5_0_13_x86">
<ExePackage Id="Netfx50"
DisplayName="Microsoft .NET 5.0 ASP.NET Core"
Description="Microsoft .NET 5.0 (5.0.13) ASP.NET Core for windows x86"
PerMachine="yes" Permanent="yes" Vital="yes" InstallArguments="/norestart /quiet"
DetectCondition="DOT_NET_VER >= v5.0.13"
bal:PrereqPackage="yes">
<ExePackagePayload
Name="runtime-aspnetcore-5.0.13-windows-x86.exe"
DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/340f9482-fc43-4ef7-b434-e2ed57f55cb3/c641b805cef3823769409a6dbac5746b/aspnetcore-runtime-5.0.13-win-x86.exe"
Hash="59c5aa1d8b6124483e518bd67cd46ba54b3bfe4818b9a4d93bfb1d8a25907d3ab987b6f6d5e5b65b70aa931449bb97b3d3b3702bb1b7c0bd6b2cd41f55050bad"
Size="7630992" />
<ExitCode Value="0" Behavior="success" />
<ExitCode Behavior="scheduleReboot" />
</ExePackage>
</PackageGroup>
</Fragment>
</Wix>