aboutsummaryrefslogtreecommitdiff
path: root/src/internal/SetBuildNumber/Directory.Packages.props.pp
diff options
context:
space:
mode:
authorStefanStojanovic <StefanStojanovic@users.noreply.github.com>2022-10-25 22:40:36 +0200
committerGitHub <noreply@github.com>2022-10-25 20:40:36 +0000
commit321c30138c82390ea5ad6b0a612dff294203a877 (patch)
tree2f27ca578d9b162eac11f0c8bee460b17138b531 /src/internal/SetBuildNumber/Directory.Packages.props.pp
parent98080672cdbbde00ea40a96c1ce38e8a52f24fee (diff)
downloadwix-321c30138c82390ea5ad6b0a612dff294203a877.tar.gz
wix-321c30138c82390ea5ad6b0a612dff294203a877.tar.bz2
wix-321c30138c82390ea5ad6b0a612dff294203a877.zip
Add NetFx .NET compatibility check for MSI (#262)
Adds new custom element in NetFx extension for running NetCoreCheck.exe tool from within the MSI installer - `<netfx:DotNetCompatibilityCheck />`. The checks are run before evaluating launch conditions, so their results can be used in those conditions. There is no limitation on the number of checks that can be run, so installer may query various runtimes on different platforms and versions and with different roll forward policies. Fixes https://github.com/wixtoolset/issues/issues/6264
Diffstat (limited to '')
-rw-r--r--src/internal/SetBuildNumber/Directory.Packages.props.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/internal/SetBuildNumber/Directory.Packages.props.pp b/src/internal/SetBuildNumber/Directory.Packages.props.pp
index 4869df82..f59c9742 100644
--- a/src/internal/SetBuildNumber/Directory.Packages.props.pp
+++ b/src/internal/SetBuildNumber/Directory.Packages.props.pp
@@ -93,4 +93,10 @@
93 <PackageVersion Include="xunit.runner.visualstudio" Version="2.4.5" /> 93 <PackageVersion Include="xunit.runner.visualstudio" Version="2.4.5" />
94 <PackageVersion Include="xunit.assert" Version="2.4.2" /> 94 <PackageVersion Include="xunit.assert" Version="2.4.2" />
95 </ItemGroup> 95 </ItemGroup>
96
97 <ItemGroup>
98 <PackageVersion Include="Microsoft.NET.Tools.NETCoreCheck.x86" Version="6.0.0" />
99 <PackageVersion Include="Microsoft.NET.Tools.NETCoreCheck.x64" Version="6.0.0" />
100 <PackageVersion Include="Microsoft.NET.Tools.NETCoreCheck.arm64" Version="6.0.0" />
101 </ItemGroup>
96</Project> 102</Project>