diff options
Diffstat (limited to 'src/wixlib')
-rw-r--r-- | src/wixlib/caSuffix.wxi | 28 | ||||
-rw-r--r-- | src/wixlib/packages.config | 5 | ||||
-rw-r--r-- | src/wixlib/ui.wixproj (renamed from src/wixlib/UIExtension.wixproj) | 35 |
3 files changed, 61 insertions, 7 deletions
diff --git a/src/wixlib/caSuffix.wxi b/src/wixlib/caSuffix.wxi new file mode 100644 index 00000000..a56a2393 --- /dev/null +++ b/src/wixlib/caSuffix.wxi | |||
@@ -0,0 +1,28 @@ | |||
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. --> | ||
3 | |||
4 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
5 | <?ifndef platform ?> | ||
6 | <?error Required value "platform" not defined in include caSuffix.wxi ?> | ||
7 | <?endif ?> | ||
8 | |||
9 | <?ifdef Suffix ?> | ||
10 | <?undef Suffix ?> | ||
11 | <?undef DeferredSuffix ?> | ||
12 | <?endif ?> | ||
13 | |||
14 | <?if $(var.platform)="x86" ?> | ||
15 | <?define Suffix="" ?> | ||
16 | <?define DeferredSuffix="" ?> | ||
17 | <?endif ?> | ||
18 | |||
19 | <?if $(var.platform)="x64" ?> | ||
20 | <?define Suffix="_x64" ?> | ||
21 | <?define DeferredSuffix="_64" ?> | ||
22 | <?endif ?> | ||
23 | |||
24 | <?if $(var.platform)="arm" ?> | ||
25 | <?define Suffix="_ARM" ?> | ||
26 | <?define DeferredSuffix="_ARM" ?> | ||
27 | <?endif ?> | ||
28 | </Include> | ||
diff --git a/src/wixlib/packages.config b/src/wixlib/packages.config new file mode 100644 index 00000000..7964daed --- /dev/null +++ b/src/wixlib/packages.config | |||
@@ -0,0 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <packages> | ||
3 | <package id="Nerdbank.GitVersioning" version="2.1.65" developmentDependency="true" targetFramework="net40" /> | ||
4 | <package id="WixToolset.MSBuild" version="4.0.0-build-0035" developmentDependency="true" targetFramework="net40" /> | ||
5 | </packages> \ No newline at end of file | ||
diff --git a/src/wixlib/UIExtension.wixproj b/src/wixlib/ui.wixproj index 213205a2..37ad94d0 100644 --- a/src/wixlib/UIExtension.wixproj +++ b/src/wixlib/ui.wixproj | |||
@@ -1,16 +1,14 @@ | |||
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 | 3 | <Project DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> | |
4 | 4 | <Import Project="..\..\packages\WixToolset.MSBuild.4.0.0-build-0035\build\WixToolset.MSBuild.props" Condition="Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0035\build\WixToolset.MSBuild.props')" /> | |
5 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> | 5 | <Import Project="..\FindLocalWix.props" /> |
6 | <PropertyGroup> | 6 | <PropertyGroup> |
7 | <ProjectGuid>{2D4FF07B-26F8-4BEF-B41C-E4383F86DC32}</ProjectGuid> | 7 | <ProjectGuid>{2D4FF07B-26F8-4BEF-B41C-E4383F86DC32}</ProjectGuid> |
8 | <OutputName>ui</OutputName> | 8 | <OutputName>ui</OutputName> |
9 | <OutputType>Library</OutputType> | 9 | <OutputType>Library</OutputType> |
10 | <BindFiles>true</BindFiles> | 10 | <BindFiles>true</BindFiles> |
11 | <Pedantic>true</Pedantic> | 11 | <Pedantic>true</Pedantic> |
12 | <!-- Suppress ICE45 until we get a new darice.cub drop that properly supports the ElevationShield control attribute bit --> | ||
13 | <SuppressIces>ICE45</SuppressIces> | ||
14 | <Cultures>en-us</Cultures> | 12 | <Cultures>en-us</Cultures> |
15 | </PropertyGroup> | 13 | </PropertyGroup> |
16 | 14 | ||
@@ -63,7 +61,12 @@ | |||
63 | <Compile Include="AdvancedWelcomeEulaDlg.wxs" /> | 61 | <Compile Include="AdvancedWelcomeEulaDlg.wxs" /> |
64 | <Compile Include="FeaturesDlg.wxs" /> | 62 | <Compile Include="FeaturesDlg.wxs" /> |
65 | <Compile Include="InstallScopeDlg.wxs" /> | 63 | <Compile Include="InstallScopeDlg.wxs" /> |
64 | <!-- TODO: Reenable when able to compile | ||
66 | <Compile Include="WixUI_Advanced.wxs" /> | 65 | <Compile Include="WixUI_Advanced.wxs" /> |
66 | --> | ||
67 | </ItemGroup> | ||
68 | |||
69 | <ItemGroup> | ||
67 | <EmbeddedResource Include="WixUI_ar-SA.wxl" /> | 70 | <EmbeddedResource Include="WixUI_ar-SA.wxl" /> |
68 | <EmbeddedResource Include="WixUI_bg-BG.wxl" /> | 71 | <EmbeddedResource Include="WixUI_bg-BG.wxl" /> |
69 | <EmbeddedResource Include="WixUI_ca-ES.wxl" /> | 72 | <EmbeddedResource Include="WixUI_ca-ES.wxl" /> |
@@ -107,8 +110,26 @@ | |||
107 | </ItemGroup> | 110 | </ItemGroup> |
108 | 111 | ||
109 | <ItemGroup> | 112 | <ItemGroup> |
110 | <ProjectReference Include="..\ca\uica.vcxproj" /> | 113 | <None Include="packages.config" /> |
111 | </ItemGroup> | 114 | </ItemGroup> |
112 | 115 | ||
113 | <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" /> | 116 | <ItemGroup> |
117 | <ProjectReference Include="..\ca\uica.vcxproj"> | ||
118 | <Name>uica</Name> | ||
119 | <Project>{F72D34CA-48DA-4DFD-91A9-A0C78BEF6981}</Project> | ||
120 | </ProjectReference> | ||
121 | </ItemGroup> | ||
122 | <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> | ||
123 | <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets') " /> | ||
124 | <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' "> | ||
125 | <Error Text="WiX Toolset build tools (v4.0 or later) must be installed to build this project. To download the WiX Toolset, go to http://wixtoolset.org/releases/." /> | ||
126 | </Target> | ||
127 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | ||
128 | <PropertyGroup> | ||
129 | <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> | ||
130 | </PropertyGroup> | ||
131 | <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'))" /> | ||
132 | <Error Condition="!Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0035\build\WixToolset.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.MSBuild.4.0.0-build-0035\build\WixToolset.MSBuild.props'))" /> | ||
133 | </Target> | ||
134 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> | ||
114 | </Project> | 135 | </Project> |