-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDotNet_ASP_NET_v6.0.20_x64.wxs
29 lines (27 loc) · 1.34 KB
/
DotNet_ASP_NET_v6.0.20_x64.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="x64"
MajorVersion="6"
Variable="DOT_NET_VER" />
<PackageGroup Id="DotNet_ASP_NET_v6_0_20_x64">
<ExePackage Id="Netfx60"
DisplayName="Microsoft .NET 6.0 ASP.NET Core"
Description="Microsoft .NET 6.0 (6.0.20) ASP.NET Core for windows x64"
PerMachine="yes" Permanent="yes" Vital="yes" InstallArguments="/norestart /quiet"
DetectCondition="DOT_NET_VER >= v6.0.20"
bal:PrereqPackage="yes">
<ExePackagePayload
Name="runtime-aspnetcore-6.0.20-windows-x64.exe"
DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/be9f67fd-60af-45b1-9bca-a7bcc0e86e7e/6a750f7d7432937b3999bb4c5325062a/aspnetcore-runtime-6.0.20-win-x64.exe"
Hash="94099d52743928ce6f659865ca519e86131305750b1abee13948596e51780c91737213b5785661a59abcbd7ed5ecca2dd976ea056ea14c46f28eacac59974705"
Size="8928560" />
<ExitCode Value="0" Behavior="success" />
<ExitCode Behavior="scheduleReboot" />
</ExePackage>
</PackageGroup>
</Fragment>
</Wix>