diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-04-26 11:31:05 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-05-11 11:14:01 -0700 |
| commit | df016066100df955d5ff98811e113fb2b1bd4b8a (patch) | |
| tree | a27b35a3651ca7b1d8c4bb7c7483ec2f92583e08 /src/api/burn/bextutil | |
| parent | dc6022da6cdbb9d7ca54c4a36485ceead07feaaf (diff) | |
| download | wix-df016066100df955d5ff98811e113fb2b1bd4b8a.tar.gz wix-df016066100df955d5ff98811e113fb2b1bd4b8a.tar.bz2 wix-df016066100df955d5ff98811e113fb2b1bd4b8a.zip | |
Implement integrated build process
Diffstat (limited to 'src/api/burn/bextutil')
| -rw-r--r-- | src/api/burn/bextutil/bextutil.nuspec | 33 | ||||
| -rw-r--r-- | src/api/burn/bextutil/bextutil.vcxproj | 23 | ||||
| -rw-r--r-- | src/api/burn/bextutil/packages.config | 6 |
3 files changed, 24 insertions, 38 deletions
diff --git a/src/api/burn/bextutil/bextutil.nuspec b/src/api/burn/bextutil/bextutil.nuspec index 752dbb97..e75c4a43 100644 --- a/src/api/burn/bextutil/bextutil.nuspec +++ b/src/api/burn/bextutil/bextutil.nuspec | |||
| @@ -1,31 +1,32 @@ | |||
| 1 | <?xml version="1.0"?> | 1 | <?xml version="1.0"?> |
| 2 | <package > | 2 | <package > |
| 3 | <metadata> | 3 | <metadata minClientVersion="4.0"> |
| 4 | <id>$id$</id> | 4 | <id>$id$</id> |
| 5 | <version>$version$</version> | 5 | <version>$version$</version> |
| 6 | <title>$title$</title> | ||
| 7 | <description>$description$</description> | ||
| 6 | <authors>$authors$</authors> | 8 | <authors>$authors$</authors> |
| 7 | <owners>$authors$</owners> | ||
| 8 | <license type="expression">MS-RL</license> | 9 | <license type="expression">MS-RL</license> |
| 9 | <projectUrl>https://github.com/wixtoolset/balutil</projectUrl> | ||
| 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | 10 | <requireLicenseAcceptance>false</requireLicenseAcceptance> |
| 11 | <description>$description$</description> | ||
| 12 | <copyright>$copyright$</copyright> | 11 | <copyright>$copyright$</copyright> |
| 12 | <projectUrl>$projectUrl$</projectUrl> | ||
| 13 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | ||
| 13 | <dependencies> | 14 | <dependencies> |
| 14 | <dependency id="WixToolset.BootstrapperCore.Native" version="[4,5)" /> | 15 | <dependency id="WixToolset.BootstrapperCore.Native" version="[4,5)" /> |
| 15 | <dependency id="WixToolset.DUtil" version="[4,5)" /> | 16 | <dependency id="WixToolset.DUtil" version="[4,5)" /> |
| 16 | </dependencies> | 17 | </dependencies> |
| 17 | </metadata> | 18 | </metadata> |
| 18 | 19 | ||
| 19 | <files> | 20 | <files> |
| 20 | <file src="build\$id$.props" target="build\" /> | 21 | <file src="$projectFolder$\build\$id$.props" target="build\" /> |
| 21 | <file src="inc\*" target="build\native\include" /> | 22 | <file src="$projectFolder$\inc\*" target="build\native\include" /> |
| 22 | <file src="..\..\build\$configuration$\v140\x86\bextutil.lib" target="build\native\v140\x86" /> | 23 | <file src="..\..\v140\x86\bextutil.lib" target="build\native\v140\x86" /> |
| 23 | <file src="..\..\build\$configuration$\v140\x64\bextutil.lib" target="build\native\v140\x64" /> | 24 | <file src="..\..\v140\x64\bextutil.lib" target="build\native\v140\x64" /> |
| 24 | <file src="..\..\build\$configuration$\v141\x86\bextutil.lib" target="build\native\v141\x86" /> | 25 | <file src="..\..\v141\x86\bextutil.lib" target="build\native\v141\x86" /> |
| 25 | <file src="..\..\build\$configuration$\v141\x64\bextutil.lib" target="build\native\v141\x64" /> | 26 | <file src="..\..\v141\x64\bextutil.lib" target="build\native\v141\x64" /> |
| 26 | <file src="..\..\build\$configuration$\v141\ARM64\bextutil.lib" target="build\native\v141\ARM64" /> | 27 | <file src="..\..\v141\ARM64\bextutil.lib" target="build\native\v141\ARM64" /> |
| 27 | <file src="..\..\build\$configuration$\v142\x86\bextutil.lib" target="build\native\v142\x86" /> | 28 | <file src="..\..\v142\x86\bextutil.lib" target="build\native\v142\x86" /> |
| 28 | <file src="..\..\build\$configuration$\v142\x64\bextutil.lib" target="build\native\v142\x64" /> | 29 | <file src="..\..\v142\x64\bextutil.lib" target="build\native\v142\x64" /> |
| 29 | <file src="..\..\build\$configuration$\v142\ARM64\bextutil.lib" target="build\native\v142\ARM64" /> | 30 | <file src="..\..\v142\ARM64\bextutil.lib" target="build\native\v142\ARM64" /> |
| 30 | </files> | 31 | </files> |
| 31 | </package> | 32 | </package> |
diff --git a/src/api/burn/bextutil/bextutil.vcxproj b/src/api/burn/bextutil/bextutil.vcxproj index b9334cf3..cbb83b96 100644 --- a/src/api/burn/bextutil/bextutil.vcxproj +++ b/src/api/burn/bextutil/bextutil.vcxproj | |||
| @@ -2,9 +2,6 @@ | |||
| 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 | ||
| 4 | <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | 4 | <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| 5 | <Import Project="..\..\packages\WixToolset.BootstrapperCore.Native.4.0.141\build\WixToolset.BootstrapperCore.Native.props" Condition="Exists('..\..\packages\WixToolset.BootstrapperCore.Native.4.0.141\build\WixToolset.BootstrapperCore.Native.props')" /> | ||
| 6 | <Import Project="..\..\packages\WixToolset.DUtil.4.0.72\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.72\build\WixToolset.DUtil.props')" /> | ||
| 7 | |||
| 8 | <ItemGroup Label="ProjectConfigurations"> | 5 | <ItemGroup Label="ProjectConfigurations"> |
| 9 | <ProjectConfiguration Include="Debug|ARM64"> | 6 | <ProjectConfiguration Include="Debug|ARM64"> |
| 10 | <Configuration>Debug</Configuration> | 7 | <Configuration>Debug</Configuration> |
| @@ -44,8 +41,7 @@ | |||
| 44 | 41 | ||
| 45 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | 42 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
| 46 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | 43 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
| 47 | <Import Project="..\..\packages\Nerdbank.GitVersioning.3.3.37\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.3.3.37\build\Nerdbank.GitVersioning.targets')" /> | 44 | <Import Project="..\..\..\NativeMultiTargeting.Build.props" /> |
| 48 | <Import Project="..\NativeMultiTargeting.Build.props" /> | ||
| 49 | 45 | ||
| 50 | <ImportGroup Label="ExtensionSettings"> | 46 | <ImportGroup Label="ExtensionSettings"> |
| 51 | </ImportGroup> | 47 | </ImportGroup> |
| @@ -54,7 +50,7 @@ | |||
| 54 | </ImportGroup> | 50 | </ImportGroup> |
| 55 | 51 | ||
| 56 | <PropertyGroup> | 52 | <PropertyGroup> |
| 57 | <ProjectAdditionalIncludeDirectories>$(ProjectDir)..\inc</ProjectAdditionalIncludeDirectories> | 53 | <ProjectAdditionalIncludeDirectories>inc;..\WixToolset.BootstrapperCore.Native\inc</ProjectAdditionalIncludeDirectories> |
| 58 | </PropertyGroup> | 54 | </PropertyGroup> |
| 59 | 55 | ||
| 60 | <ItemGroup> | 56 | <ItemGroup> |
| @@ -75,16 +71,11 @@ | |||
| 75 | </ItemGroup> | 71 | </ItemGroup> |
| 76 | 72 | ||
| 77 | <ItemGroup> | 73 | <ItemGroup> |
| 78 | <None Include="packages.config" /> | 74 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> |
| 75 | <PackageReference Include="GitInfo" PrivateAssets="All" /> | ||
| 76 | |||
| 77 | <PackageReference Include="WixToolset.DUtil" /> | ||
| 79 | </ItemGroup> | 78 | </ItemGroup> |
| 80 | 79 | ||
| 81 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | 80 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
| 82 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | 81 | </Project> |
| 83 | <PropertyGroup> | ||
| 84 | <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> | ||
| 85 | </PropertyGroup> | ||
| 86 | <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.72\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.72\build\WixToolset.DUtil.props'))" /> | ||
| 87 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.3.3.37\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.3.3.37\build\Nerdbank.GitVersioning.targets'))" /> | ||
| 88 | <Error Condition="!Exists('..\..\packages\WixToolset.BootstrapperCore.Native.4.0.141\build\WixToolset.BootstrapperCore.Native.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BootstrapperCore.Native.4.0.141\build\WixToolset.BootstrapperCore.Native.props'))" /> | ||
| 89 | </Target> | ||
| 90 | </Project> \ No newline at end of file | ||
diff --git a/src/api/burn/bextutil/packages.config b/src/api/burn/bextutil/packages.config deleted file mode 100644 index 08ea3364..00000000 --- a/src/api/burn/bextutil/packages.config +++ /dev/null | |||
| @@ -1,6 +0,0 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <packages> | ||
| 3 | <package id="Nerdbank.GitVersioning" version="3.3.37" targetFramework="native" developmentDependency="true" /> | ||
| 4 | <package id="WixToolset.BootstrapperCore.Native" version="4.0.141" targetFramework="native" /> | ||
| 5 | <package id="WixToolset.DUtil" version="4.0.72" targetFramework="native" /> | ||
| 6 | </packages> \ No newline at end of file | ||
