diff options
author | Bob Arnson <bob@joyofsetup.com> | 2020-06-14 16:03:52 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-06-14 16:31:22 -0400 |
commit | 1979837ff79b46ce0a03e25b82e239c37348ec4d (patch) | |
tree | 6423cb3919c04b82f498972258ecb25f5de011d9 /src/wixlib | |
parent | 5aee3f30c28734fbbc3e89a6abd711dbc7158382 (diff) | |
download | wix-1979837ff79b46ce0a03e25b82e239c37348ec4d.tar.gz wix-1979837ff79b46ce0a03e25b82e239c37348ec4d.tar.bz2 wix-1979837ff79b46ce0a03e25b82e239c37348ec4d.zip |
Enable platform-specific CAs, including ARM64
- Update to latest dependencies.
Diffstat (limited to 'src/wixlib')
-rw-r--r-- | src/wixlib/NetFxExtension_arm.wxs | 8 | ||||
-rw-r--r-- | src/wixlib/NetFxExtension_arm64.wxs | 8 | ||||
-rw-r--r-- | src/wixlib/NetFxExtension_x64.wxs | 8 | ||||
-rw-r--r-- | src/wixlib/netfx.wixproj | 31 | ||||
-rw-r--r-- | src/wixlib/packages.config | 6 |
5 files changed, 52 insertions, 9 deletions
diff --git a/src/wixlib/NetFxExtension_arm.wxs b/src/wixlib/NetFxExtension_arm.wxs new file mode 100644 index 00000000..8b5c508b --- /dev/null +++ b/src/wixlib/NetFxExtension_arm.wxs | |||
@@ -0,0 +1,8 @@ | |||
1 | <?xml version="1.0"?> | ||
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | |||
4 | |||
5 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
6 | <?define platform=arm ?> | ||
7 | <?include NetfxExtension_Platform.wxi ?> | ||
8 | </Wix> | ||
diff --git a/src/wixlib/NetFxExtension_arm64.wxs b/src/wixlib/NetFxExtension_arm64.wxs new file mode 100644 index 00000000..8b1f9d36 --- /dev/null +++ b/src/wixlib/NetFxExtension_arm64.wxs | |||
@@ -0,0 +1,8 @@ | |||
1 | <?xml version="1.0"?> | ||
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | |||
4 | |||
5 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
6 | <?define platform=arm64 ?> | ||
7 | <?include NetfxExtension_Platform.wxi ?> | ||
8 | </Wix> | ||
diff --git a/src/wixlib/NetFxExtension_x64.wxs b/src/wixlib/NetFxExtension_x64.wxs new file mode 100644 index 00000000..cc079e5a --- /dev/null +++ b/src/wixlib/NetFxExtension_x64.wxs | |||
@@ -0,0 +1,8 @@ | |||
1 | <?xml version="1.0"?> | ||
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | |||
4 | |||
5 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
6 | <?define platform=x64 ?> | ||
7 | <?include NetfxExtension_Platform.wxi ?> | ||
8 | </Wix> | ||
diff --git a/src/wixlib/netfx.wixproj b/src/wixlib/netfx.wixproj index c153eda9..e0e052d1 100644 --- a/src/wixlib/netfx.wixproj +++ b/src/wixlib/netfx.wixproj | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | 2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> |
3 | <Project DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> | 3 | <Project DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> |
4 | <Import Project="..\..\packages\WixToolset.MSBuild.4.0.0-build-0102\build\WixToolset.MSBuild.props" Condition="Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0102\build\WixToolset.MSBuild.props')" /> | 4 | <Import Project="..\..\packages\WixToolset.MSBuild.4.0.0-build-0133\build\WixToolset.MSBuild.props" Condition="Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0133\build\WixToolset.MSBuild.props')" /> |
5 | <Import Project="..\FindLocalWix.props" /> | 5 | <Import Project="..\FindLocalWix.props" /> |
6 | <PropertyGroup> | 6 | <PropertyGroup> |
7 | <ProjectGuid>{45e4a6ac-3190-4e17-83f0-9935ffa5dc2b}</ProjectGuid> | 7 | <ProjectGuid>{45e4a6ac-3190-4e17-83f0-9935ffa5dc2b}</ProjectGuid> |
@@ -28,6 +28,9 @@ | |||
28 | <Compile Include="NetFx471.wxs" /> | 28 | <Compile Include="NetFx471.wxs" /> |
29 | <Compile Include="NetFx472.wxs" /> | 29 | <Compile Include="NetFx472.wxs" /> |
30 | <Compile Include="NetFx48.wxs" /> | 30 | <Compile Include="NetFx48.wxs" /> |
31 | <Compile Include="NetFxExtension_arm.wxs" /> | ||
32 | <Compile Include="NetFxExtension_arm64.wxs" /> | ||
33 | <Compile Include="NetFxExtension_x64.wxs" /> | ||
31 | <Compile Include="NetFxExtension_x86.wxs" /> | 34 | <Compile Include="NetFxExtension_x86.wxs" /> |
32 | <Compile Include="NetCore3.1.0_x64.wxs" /> | 35 | <Compile Include="NetCore3.1.0_x64.wxs" /> |
33 | <Compile Include="NetCore3.1.0_x86.wxs" /> | 36 | <Compile Include="NetCore3.1.0_x86.wxs" /> |
@@ -48,6 +51,22 @@ | |||
48 | <ProjectReference Include="..\ca\netfxca.vcxproj"> | 51 | <ProjectReference Include="..\ca\netfxca.vcxproj"> |
49 | <Name>netfxca</Name> | 52 | <Name>netfxca</Name> |
50 | <Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project> | 53 | <Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project> |
54 | <Properties>Platform=ARM</Properties> | ||
55 | </ProjectReference> | ||
56 | <ProjectReference Include="..\ca\netfxca.vcxproj"> | ||
57 | <Name>netfxca</Name> | ||
58 | <Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project> | ||
59 | <Properties>Platform=ARM64</Properties> | ||
60 | </ProjectReference> | ||
61 | <ProjectReference Include="..\ca\netfxca.vcxproj"> | ||
62 | <Name>netfxca</Name> | ||
63 | <Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project> | ||
64 | <Properties>Platform=x86</Properties> | ||
65 | </ProjectReference> | ||
66 | <ProjectReference Include="..\ca\netfxca.vcxproj"> | ||
67 | <Name>netfxca</Name> | ||
68 | <Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project> | ||
69 | <Properties>Platform=x64</Properties> | ||
51 | </ProjectReference> | 70 | </ProjectReference> |
52 | </ItemGroup> | 71 | </ItemGroup> |
53 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> | 72 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> |
@@ -60,11 +79,11 @@ | |||
60 | <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> | 79 | <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> |
61 | </PropertyGroup> | 80 | </PropertyGroup> |
62 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" /> | 81 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" /> |
63 | <Error Condition="!Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0102\build\WixToolset.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.MSBuild.4.0.0-build-0102\build\WixToolset.MSBuild.props'))" /> | 82 | <Error Condition="!Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0133\build\WixToolset.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.MSBuild.4.0.0-build-0133\build\WixToolset.MSBuild.props'))" /> |
64 | <Error Condition="!Exists('..\..\packages\WixToolset.Bal.wixext.4.0.37\build\WixToolset.Bal.wixext.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.Bal.wixext.4.0.37\build\WixToolset.Bal.wixext.targets'))" /> | 83 | <Error Condition="!Exists('..\..\packages\WixToolset.Bal.wixext.4.0.40\build\WixToolset.Bal.wixext.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.Bal.wixext.4.0.40\build\WixToolset.Bal.wixext.targets'))" /> |
65 | <Error Condition="!Exists('..\..\packages\WixToolset.Util.wixext.4.0.32\build\WixToolset.Util.wixext.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.Util.wixext.4.0.32\build\WixToolset.Util.wixext.targets'))" /> | 84 | <Error Condition="!Exists('..\..\packages\WixToolset.Util.wixext.4.0.36\build\WixToolset.Util.wixext.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.Util.wixext.4.0.36\build\WixToolset.Util.wixext.targets'))" /> |
66 | </Target> | 85 | </Target> |
67 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> | 86 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> |
68 | <Import Project="..\..\packages\WixToolset.Bal.wixext.4.0.37\build\WixToolset.Bal.wixext.targets" Condition="Exists('..\..\packages\WixToolset.Bal.wixext.4.0.37\build\WixToolset.Bal.wixext.targets')" /> | 87 | <Import Project="..\..\packages\WixToolset.Bal.wixext.4.0.40\build\WixToolset.Bal.wixext.targets" Condition="Exists('..\..\packages\WixToolset.Bal.wixext.4.0.40\build\WixToolset.Bal.wixext.targets')" /> |
69 | <Import Project="..\..\packages\WixToolset.Util.wixext.4.0.32\build\WixToolset.Util.wixext.targets" Condition="Exists('..\..\packages\WixToolset.Util.wixext.4.0.32\build\WixToolset.Util.wixext.targets')" /> | 88 | <Import Project="..\..\packages\WixToolset.Util.wixext.4.0.36\build\WixToolset.Util.wixext.targets" Condition="Exists('..\..\packages\WixToolset.Util.wixext.4.0.36\build\WixToolset.Util.wixext.targets')" /> |
70 | </Project> \ No newline at end of file | 89 | </Project> \ No newline at end of file |
diff --git a/src/wixlib/packages.config b/src/wixlib/packages.config index f7ce1fd5..e71c3d9d 100644 --- a/src/wixlib/packages.config +++ b/src/wixlib/packages.config | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <packages> | 2 | <packages> |
3 | <package id="Nerdbank.GitVersioning" version="2.1.65" developmentDependency="true" targetFramework="net40" /> | 3 | <package id="Nerdbank.GitVersioning" version="2.1.65" developmentDependency="true" targetFramework="net40" /> |
4 | <package id="WixToolset.MSBuild" version="4.0.0-build-0102" developmentDependency="true" targetFramework="net40" /> | 4 | <package id="WixToolset.MSBuild" version="4.0.0-build-0133" developmentDependency="true" targetFramework="net40" /> |
5 | <package id="WixToolset.Bal.wixext" version="4.0.37" targetFramework="net40" /> | 5 | <package id="WixToolset.Bal.wixext" version="4.0.40" targetFramework="net40" /> |
6 | <package id="WixToolset.Util.wixext" version="4.0.32" targetFramework="net40" /> | 6 | <package id="WixToolset.Util.wixext" version="4.0.36" targetFramework="net40" /> |
7 | </packages> \ No newline at end of file | 7 | </packages> \ No newline at end of file |