-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDotNet_ASP_NET_v5.0.4_x64.wxs
29 lines (27 loc) · 1.33 KB
/
DotNet_ASP_NET_v5.0.4_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="5"
Variable="DOT_NET_VER" />
<PackageGroup Id="DotNet_ASP_NET_v5_0_4_x64">
<ExePackage Id="Netfx50"
DisplayName="Microsoft .NET 5.0 ASP.NET Core"
Description="Microsoft .NET 5.0 (5.0.4) ASP.NET Core for windows x64"
PerMachine="yes" Permanent="yes" Vital="yes" InstallArguments="/norestart /quiet"
DetectCondition="DOT_NET_VER >= v5.0.4"
bal:PrereqPackage="yes">
<ExePackagePayload
Name="runtime-aspnetcore-5.0.4-windows-x64.exe"
DownloadUrl="https://download.visualstudio.microsoft.com/download/pr/10ba6f78-b704-45fd-b770-e56aa9a03498/a4738342daec491cc55a2acc17987c4a/aspnetcore-runtime-5.0.4-win-x64.exe"
Hash="08a6932cb0bd841a6eabe75e4725c532774f74ab02295b9a510ed02af9f4785bc37c63eac111eb1016fdd72b7bac815b8199f632147210e14e4d83fee0e80f15"
Size="8268472" />
<ExitCode Value="0" Behavior="success" />
<ExitCode Behavior="scheduleReboot" />
</ExePackage>
</PackageGroup>
</Fragment>
</Wix>