aboutsummaryrefslogtreecommitdiff
path: root/src/mbahost
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-12-11 20:58:44 +1100
committerSean Hall <r.sean.hall@gmail.com>2019-12-11 20:16:06 +1000
commit1ee38ea389f84217d13dd707208e4ec6e332a507 (patch)
tree91eec44f5c3936b23770408ad984391b03db3054 /src/mbahost
parent58243de7b503690d8794d6a7479cd49c370639f4 (diff)
downloadwix-1ee38ea389f84217d13dd707208e4ec6e332a507.tar.gz
wix-1ee38ea389f84217d13dd707208e4ec6e332a507.tar.bz2
wix-1ee38ea389f84217d13dd707208e4ec6e332a507.zip
Update dependencies.
Diffstat (limited to 'src/mbahost')
-rw-r--r--src/mbahost/mbahost.cpp6
-rw-r--r--src/mbahost/mbahost.vcxproj17
-rw-r--r--src/mbahost/packages.config6
3 files changed, 19 insertions, 10 deletions
diff --git a/src/mbahost/mbahost.cpp b/src/mbahost/mbahost.cpp
index d3737c06..444a95a8 100644
--- a/src/mbahost/mbahost.cpp
+++ b/src/mbahost/mbahost.cpp
@@ -1,7 +1,7 @@
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. 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.
2 2
3#include "precomp.h" 3#include "precomp.h"
4#include <WixToolset.BootstrapperCore.h> // includes the generated assembly name macros. 4#include <WixToolset.Mba.Core.h> // includes the generated assembly name macros.
5#include "BalBaseBootstrapperApplicationProc.h" 5#include "BalBaseBootstrapperApplicationProc.h"
6 6
7static const DWORD NET452_RELEASE = 379893; 7static const DWORD NET452_RELEASE = 379893;
@@ -185,7 +185,7 @@ static HRESULT GetAppDomain(
185 hr = GetAppBase(&sczAppBase); 185 hr = GetAppBase(&sczAppBase);
186 ExitOnFailure(hr, "Failed to get the host base path."); 186 ExitOnFailure(hr, "Failed to get the host base path.");
187 187
188 hr = PathConcat(sczAppBase, L"WixToolset.BootstrapperCore.config", &sczConfigPath); 188 hr = PathConcat(sczAppBase, L"WixToolset.Mba.Core.config", &sczConfigPath);
189 ExitOnFailure(hr, "Failed to get the full path to the application configuration file."); 189 ExitOnFailure(hr, "Failed to get the full path to the application configuration file.");
190 190
191 // Check that the supported framework is installed. 191 // Check that the supported framework is installed.
@@ -557,7 +557,7 @@ static HRESULT CreateManagedBootstrapperApplicationFactory(
557 bstrAssemblyName = ::SysAllocString(MBA_ASSEMBLY_FULL_NAME); 557 bstrAssemblyName = ::SysAllocString(MBA_ASSEMBLY_FULL_NAME);
558 ExitOnNull(bstrAssemblyName, hr, E_OUTOFMEMORY, "Failed to allocate the full assembly name for the bootstrapper application factory."); 558 ExitOnNull(bstrAssemblyName, hr, E_OUTOFMEMORY, "Failed to allocate the full assembly name for the bootstrapper application factory.");
559 559
560 bstrTypeName = ::SysAllocString(L"WixToolset.BootstrapperCore.BootstrapperApplicationFactory"); 560 bstrTypeName = ::SysAllocString(L"WixToolset.Mba.Core.BootstrapperApplicationFactory");
561 ExitOnNull(bstrTypeName, hr, E_OUTOFMEMORY, "Failed to allocate the full type name for the BA factory."); 561 ExitOnNull(bstrTypeName, hr, E_OUTOFMEMORY, "Failed to allocate the full type name for the BA factory.");
562 562
563 hr = pAppDomain->CreateInstance(bstrAssemblyName, bstrTypeName, &pObj); 563 hr = pAppDomain->CreateInstance(bstrAssemblyName, bstrTypeName, &pObj);
diff --git a/src/mbahost/mbahost.vcxproj b/src/mbahost/mbahost.vcxproj
index ff486d54..c7a0b69f 100644
--- a/src/mbahost/mbahost.vcxproj
+++ b/src/mbahost/mbahost.vcxproj
@@ -2,8 +2,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
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.BalUtil.4.0.5\build\WixToolset.BalUtil.props" Condition="Exists('..\..\packages\WixToolset.BalUtil.4.0.5\build\WixToolset.BalUtil.props')" /> 5 <Import Project="..\..\packages\WixToolset.BalUtil.4.0.9\build\WixToolset.BalUtil.props" Condition="Exists('..\..\packages\WixToolset.BalUtil.4.0.9\build\WixToolset.BalUtil.props')" />
6 <Import Project="..\..\packages\WixToolset.BootstrapperCore.4.0.5\build\WixToolset.BootstrapperCore.props" Condition="Exists('..\..\packages\WixToolset.BootstrapperCore.4.0.5\build\WixToolset.BootstrapperCore.props')" /> 6 <Import Project="..\..\packages\WixToolset.BootstrapperCore.Native.4.0.8\build\WixToolset.BootstrapperCore.Native.props" Condition="Exists('..\..\packages\WixToolset.BootstrapperCore.Native.4.0.8\build\WixToolset.BootstrapperCore.Native.props')" />
7 <Import Project="..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props')" /> 7 <Import Project="..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props')" />
8 8
9 <ItemGroup Label="ProjectConfigurations"> 9 <ItemGroup Label="ProjectConfigurations">
@@ -50,8 +50,15 @@
50 <None Include="packages.config" /> 50 <None Include="packages.config" />
51 </ItemGroup> 51 </ItemGroup>
52 52
53 <ItemDefinitionGroup>
54 <ClCompile>
55 <AdditionalIncludeDirectories>..\..\packages\WixToolset.Mba.Core.4.0.9\build\native\include\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
56 </ClCompile>
57 </ItemDefinitionGroup>
58
53 <ItemGroup> 59 <ItemGroup>
54 <MbaHostDependency Include="..\..\packages\WixToolset.BootstrapperCore.4.0.5\lib\net20\WixToolset.BootstrapperCore.dll" /> 60 <MbaHostDependency Include="..\..\packages\WixToolset.BootstrapperCore.4.0.8\lib\net20\WixToolset.BootstrapperCore.dll" />
61 <MbaHostDependency Include="..\..\packages\WixToolset.Mba.Core.4.0.9\lib\net20\WixToolset.Mba.Core.dll" />
55 </ItemGroup> 62 </ItemGroup>
56 63
57 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 64 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
@@ -60,8 +67,8 @@
60 <PropertyGroup> 67 <PropertyGroup>
61 <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> 68 <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>
62 </PropertyGroup> 69 </PropertyGroup>
63 <Error Condition="!Exists('..\..\packages\WixToolset.BalUtil.4.0.5\build\WixToolset.BalUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BalUtil.4.0.5\build\WixToolset.BalUtil.props'))" /> 70 <Error Condition="!Exists('..\..\packages\WixToolset.BalUtil.4.0.9\build\WixToolset.BalUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BalUtil.4.0.9\build\WixToolset.BalUtil.props'))" />
64 <Error Condition="!Exists('..\..\packages\WixToolset.BootstrapperCore.4.0.5\build\WixToolset.BootstrapperCore.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BootstrapperCore.4.0.5\build\WixToolset.BootstrapperCore.props'))" /> 71 <Error Condition="!Exists('..\..\packages\WixToolset.BootstrapperCore.Native.4.0.8\build\WixToolset.BootstrapperCore.Native.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BootstrapperCore.Native.4.0.8\build\WixToolset.BootstrapperCore.Native.props'))" />
65 <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props'))" /> 72 <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.18\build\WixToolset.DUtil.props'))" />
66 <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'))" /> 73 <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'))" />
67 </Target> 74 </Target>
diff --git a/src/mbahost/packages.config b/src/mbahost/packages.config
index 107f25c4..c616685e 100644
--- a/src/mbahost/packages.config
+++ b/src/mbahost/packages.config
@@ -1,7 +1,9 @@
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" targetFramework="native" developmentDependency="true" /> 3 <package id="Nerdbank.GitVersioning" version="2.1.65" targetFramework="native" developmentDependency="true" />
4 <package id="WixToolset.BootstrapperCore" version="4.0.5" targetFramework="native" /> 4 <package id="WixToolset.BootstrapperCore" version="4.0.8" targetFramework="native" />
5 <package id="WixToolset.BalUtil" version="4.0.5" targetFramework="native" /> 5 <package id="WixToolset.BootstrapperCore.Native" version="4.0.8" targetFramework="native" />
6 <package id="WixToolset.BalUtil" version="4.0.9" targetFramework="native" />
6 <package id="WixToolset.DUtil" version="4.0.18" targetFramework="native" /> 7 <package id="WixToolset.DUtil" version="4.0.18" targetFramework="native" />
8 <package id="WixToolset.Mba.Core" version="4.0.9" targetFramework="native" />
7</packages> \ No newline at end of file 9</packages> \ No newline at end of file