forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore the Microsoft.NETCore.DotNetAppHost package since the SDK tra…
…nsitively uses it through the Microsoft.NETCore.DotNetHostResolver package. (dotnet#44883)
- Loading branch information
1 parent
38259c8
commit eeba597
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
...ller/pkg/projects/Microsoft.NETCore.DotNetAppHost/Microsoft.NETCore.DotNetAppHost.pkgproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<VersionProp>AppHostVersion</VersionProp> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<NativeBinary Include="$(DotNetHostBinDir)/apphost$(ApplicationFileExtension)" /> | ||
<NativeBinary Include="$(DotNetHostBinDir)/singlefilehost$(ApplicationFileExtension)" /> | ||
<NativeBinary Include="$(DotNetHostBinDir)/$(LibraryFilePrefix)nethost$(LibraryFileExtension)" /> | ||
<NativeBinary Include="$(DotNetHostBinDir)/$(LibraryFilePrefix)nethost$(StaticLibraryFileExtension)" /> | ||
<NativeBinary Include="$(DotNetHostBinDir)/coreclr_delegates.h" /> | ||
<NativeBinary Include="$(DotNetHostBinDir)/hostfxr.h" /> | ||
<NativeBinary Include="$(DotNetHostBinDir)/nethost.h" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetOS)' == 'windows'"> | ||
<NativeBinary Include="$(DotNetHostBinDir)/comhost.dll" /> | ||
<NativeBinary Include="$(DotNetHostBinDir)/ijwhost.dll" /> | ||
<NativeBinary Include="$(DotNetHostBinDir)/ijwhost.lib" /> | ||
<!-- The libnethost.lib is a static library for the nethost scenario. | ||
The symbols file is also shipped to enable users to fully debug | ||
binaries that link against the static version. --> | ||
<NativeBinary Include="$(DotNetHostBinDir)/libnethost.lib" /> | ||
<NativeBinary Include="$(DotNetHostBinDir)/PDB/libnethost.pdb" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(PackageTargetRuntime)' != ''"> | ||
<File Include="@(NativeBinary)"> | ||
<TargetPath>runtimes/$(PackageTargetRuntime)/native</TargetPath> | ||
<IsNative>true</IsNative> | ||
</File> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters