-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDotNet_ASP_NET_v5.0.2_x86.wxs
29 lines (27 loc) · 1.33 KB
/
DotNet_ASP_NET_v5.0.2_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_2_x86">
<ExePackage Id="Netfx50"
DisplayName="Microsoft .NET 5.0 ASP.NET Core"
Description="Microsoft .NET 5.0 (5.0.2) ASP.NET Core for windows x86"
PerMachine="yes" Permanent="yes" Vital="yes" InstallArguments="/norestart /quiet"
DetectCondition="DOT_NET_VER >= v5.0.2"
bal:PrereqPackage="yes">
<ExePackagePayload
Name="runtime-aspnetcore-5.0.2-windows-x86.exe"
DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/b2fd1b9b-1b96-457a-83fe-25089fd052c4/30b503f5ecbf04586aeff2e8658d5fb6/aspnetcore-runtime-5.0.2-win-x86.exe"
Hash="66d6fe4962607d2d5971723bbb778b1da96007afc6b06c7ede9d6a6e00dda3ccdcaaa10d3285012f00b8ccc11aa1b70017dca6beddf91d85d6d9f37b9e8b3931"
Size="7589240" />
<ExitCode Value="0" Behavior="success" />
<ExitCode Behavior="scheduleReboot" />
</ExePackage>
</PackageGroup>
</Fragment>
</Wix>