-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDotNet_ASP_NET_v6.0.31_x64.wxs
29 lines (27 loc) · 1.34 KB
/
DotNet_ASP_NET_v6.0.31_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_31_x64">
<ExePackage Id="Netfx60"
DisplayName="Microsoft .NET 6.0 ASP.NET Core"
Description="Microsoft .NET 6.0 (6.0.31) ASP.NET Core for windows x64"
PerMachine="yes" Permanent="yes" Vital="yes" InstallArguments="/norestart /quiet"
DetectCondition="DOT_NET_VER >= v6.0.31"
bal:PrereqPackage="yes">
<ExePackagePayload
Name="runtime-aspnetcore-6.0.31-windows-x64.exe"
DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/29b7b141-bb4d-462b-8b55-6a1e4a610add/c38161439a048506b923b47fd50d21cc/aspnetcore-runtime-6.0.31-win-x64.exe"
Hash="a4c657a448f361d3bc915e9ec4dc01e9fee60a3ead14ef7d7fb5fcdcde02aaf339127ddae2c918b7de74646c99c6802fbe291d632d893a9e5db35d0421998663"
Size="9051400" />
<ExitCode Value="0" Behavior="success" />
<ExitCode Behavior="scheduleReboot" />
</ExePackage>
</PackageGroup>
</Fragment>
</Wix>