aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-27 02:56:58 -0700
committerRob Mensching <rob@firegiant.com>2020-06-27 03:04:59 -0700
commitd95a3e33daea883bf7b05ef422d1d489270cc0d3 (patch)
tree9fdaecaf191e3cfad9296ab284204a211c7ec538 /src/wixlib
parent5756dd94e2a1bdc4ed6b7d957c7df314b66efcd8 (diff)
downloadwix-d95a3e33daea883bf7b05ef422d1d489270cc0d3.tar.gz
wix-d95a3e33daea883bf7b05ef422d1d489270cc0d3.tar.bz2
wix-d95a3e33daea883bf7b05ef422d1d489270cc0d3.zip
Build wixlib with WixToolset.Sdk
Diffstat (limited to 'src/wixlib')
-rw-r--r--src/wixlib/dependency.wixproj38
-rw-r--r--src/wixlib/packages.config5
2 files changed, 7 insertions, 36 deletions
diff --git a/src/wixlib/dependency.wixproj b/src/wixlib/dependency.wixproj
index 5c704f3f..25e13317 100644
--- a/src/wixlib/dependency.wixproj
+++ b/src/wixlib/dependency.wixproj
@@ -1,43 +1,19 @@
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. --> 1<!-- 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"> 2<Project Sdk="WixToolset.Sdk">
4 <Import Project="..\..\packages\WixToolset.MSBuild.4.0.0-build-0086\build\WixToolset.MSBuild.props" Condition="Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0086\build\WixToolset.MSBuild.props')" /> 3
5 <Import Project="..\FindLocalWix.props" />
6 <PropertyGroup> 4 <PropertyGroup>
7 <ProjectGuid>{58ED0EC8-73F8-4EE1-8664-A53486D38EC8}</ProjectGuid>
8 <OutputName>dependency</OutputName>
9 <OutputType>Library</OutputType> 5 <OutputType>Library</OutputType>
10 <BindFiles>true</BindFiles> 6 <BindFiles>true</BindFiles>
11 <Pedantic>true</Pedantic> 7 <!-- <SuppressSpecificWarnings>1086</SuppressSpecificWarnings> -->
12 <SuppressSpecificWarnings>1086</SuppressSpecificWarnings>
13 <Cultures>en-us</Cultures> 8 <Cultures>en-us</Cultures>
14 </PropertyGroup> 9 </PropertyGroup>
15 10
16 <ItemGroup> 11 <ItemGroup>
17 <Compile Include="DependencyExtension.wxs" /> 12 <ProjectReference Include="..\ca\dependencyca.vcxproj" />
18 <Compile Include="DependencyExtension_x86.wxs" />
19 <EmbeddedResource Include="en-us.wxl" />
20 </ItemGroup>
21 <ItemGroup>
22 <None Include="packages.config" />
23 </ItemGroup> 13 </ItemGroup>
14
24 <ItemGroup> 15 <ItemGroup>
25 <ProjectReference Include="..\ca\dependencyca.vcxproj"> 16 <PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="All" />
26 <Name>dependencyca</Name>
27 <Project>{B86AF46C-0F90-49CC-923F-A800B088D015}</Project>
28 </ProjectReference>
29 </ItemGroup> 17 </ItemGroup>
30 <Import Project="$(WixTargetsPath)" Condition=" '$(WixTargetsPath)' != '' AND Exists('$(WixTargetsPath)') " /> 18
31 <Import Project="$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets" Condition=" '$(WixTargetsPath)' == '' AND Exists('$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\wix.targets') " />
32 <Target Name="EnsureWixToolsetInstalled" Condition=" '$(WixTargetsImported)' != 'true' ">
33 <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/." />
34 </Target>
35 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
36 <PropertyGroup>
37 <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>
38 </PropertyGroup>
39 <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'))" />
40 <Error Condition="!Exists('..\..\packages\WixToolset.MSBuild.4.0.0-build-0086\build\WixToolset.MSBuild.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.MSBuild.4.0.0-build-0086\build\WixToolset.MSBuild.props'))" />
41 </Target>
42 <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" />
43</Project> 19</Project>
diff --git a/src/wixlib/packages.config b/src/wixlib/packages.config
deleted file mode 100644
index 1e5a9850..00000000
--- a/src/wixlib/packages.config
+++ /dev/null
@@ -1,5 +0,0 @@
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-0086" developmentDependency="true" targetFramework="net40" />
5</packages> \ No newline at end of file