From 45daa2f77255533406332d5ea1a0d1957b6e8e3f Mon Sep 17 00:00:00 2001 From: Jeremy Koritzinsky Date: Thu, 4 Apr 2019 10:30:40 -0700 Subject: [PATCH] Add ijwhost.lib to host package. (dotnet/core-setup#5650) I forgot to include the `ijwhost.lib` exports lib in the Microsoft.NETCore.DotNetAppHost package. C++/CLI will need this in the package for aquisition via NuGet. Commit migrated from https://github.com/dotnet/core-setup/commit/482c74beffd6206694004fbd539ecede6dcab4b1 --- src/installer/corehost/cli/ijwhost/Exports.def | 2 +- .../runtime.Windows_NT.Microsoft.NETCore.DotNetAppHost.props | 1 + src/installer/pkg/projects/dir.targets | 4 +++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/installer/corehost/cli/ijwhost/Exports.def b/src/installer/corehost/cli/ijwhost/Exports.def index 9c503b4..98cb7cd 100644 --- a/src/installer/corehost/cli/ijwhost/Exports.def +++ b/src/installer/corehost/cli/ijwhost/Exports.def @@ -1,3 +1,3 @@ EXPORTS - _CorDllMain PRIVATE + _CorDllMain GetTokenForVTableEntry PRIVATE \ No newline at end of file diff --git a/src/installer/pkg/projects/Microsoft.NETCore.DotNetAppHost/runtime.Windows_NT.Microsoft.NETCore.DotNetAppHost.props b/src/installer/pkg/projects/Microsoft.NETCore.DotNetAppHost/runtime.Windows_NT.Microsoft.NETCore.DotNetAppHost.props index 27a8309..4fb7a44 100644 --- a/src/installer/pkg/projects/Microsoft.NETCore.DotNetAppHost/runtime.Windows_NT.Microsoft.NETCore.DotNetAppHost.props +++ b/src/installer/pkg/projects/Microsoft.NETCore.DotNetAppHost/runtime.Windows_NT.Microsoft.NETCore.DotNetAppHost.props @@ -4,6 +4,7 @@ + runtimes/$(PackageTargetRuntime)/native diff --git a/src/installer/pkg/projects/dir.targets b/src/installer/pkg/projects/dir.targets index 3bac47a..f8ca13a 100644 --- a/src/installer/pkg/projects/dir.targets +++ b/src/installer/pkg/projects/dir.targets @@ -33,7 +33,9 @@ - + + -- 2.7.4