-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDotNet_ASP_NET_v6.0.14_x86.wxs
29 lines (27 loc) · 1.34 KB
/
DotNet_ASP_NET_v6.0.14_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="6"
Variable="DOT_NET_VER" />
<PackageGroup Id="DotNet_ASP_NET_v6_0_14_x86">
<ExePackage Id="Netfx60"
DisplayName="Microsoft .NET 6.0 ASP.NET Core"
Description="Microsoft .NET 6.0 (6.0.14) ASP.NET Core for windows x86"
PerMachine="yes" Permanent="yes" Vital="yes" InstallArguments="/norestart /quiet"
DetectCondition="DOT_NET_VER >= v6.0.14"
bal:PrereqPackage="yes">
<ExePackagePayload
Name="runtime-aspnetcore-6.0.14-windows-x86.exe"
DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/f7e263ac-64e0-41a6-b6b3-eca6a8ff193b/e8ca4e4568fccaf82d8081ddb9a3e18f/aspnetcore-runtime-6.0.14-win-x86.exe"
Hash="b1c29ab498af9e9c430f9dee12f87c8db91c2bdfcd6772841f8cef979d598c3bd1530d011575dd460648a79f0a418ce9a785e045098e543bce88e7a5d129d68e"
Size="8201584" />
<ExitCode Value="0" Behavior="success" />
<ExitCode Behavior="scheduleReboot" />
</ExePackage>
</PackageGroup>
</Fragment>
</Wix>