Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
<AllowedReferenceRelatedFileExtensions>.pdb</AllowedReferenceRelatedFileExtensions>

<PartialCompositeAssemblyListPath>PartialCompositeAssemblyListPath.txt</PartialCompositeAssemblyListPath>

<GetSharedFrameworkFilesForReadyToRunDependsOn>
$(GetSharedFrameworkFilesForReadyToRunDependsOn);
_ResolveCopyLocalNativeReference;
</GetSharedFrameworkFilesForReadyToRunDependsOn>
</PropertyGroup>

<ItemGroup>
Expand Down Expand Up @@ -84,6 +89,11 @@
Include="$(ArtifactsBinDir)InProcessRequestHandler\$(NativePlatform)\$(Configuration)\aspnetcorev2_inprocess.dll" />
</ItemGroup>

<Target Name="_ResolveCopyLocalNativeReference">
<ItemGroup>
<ReferenceCopyLocalPaths Include="@(NativeRuntimeAsset)" />
</ItemGroup>
</Target>

<Target Name="_WarnAboutUnbuiltNativeDependencies"
BeforeTargets="Build"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@

<!-- TODO: Try to remove this disable property -->
<DisablePackageReferenceRestrictions>true</DisablePackageReferenceRestrictions>

<GetSharedFrameworkFilesForReadyToRunDependsOn>
$(GetSharedFrameworkFilesForReadyToRunDependsOn);
_ResolveCopyLocalNativeReference;
</GetSharedFrameworkFilesForReadyToRunDependsOn>
</PropertyGroup>

<PropertyGroup Condition="'$(BuildInstallers)' == 'true' or '$(TargetOsName)' == 'win'">
Expand Down Expand Up @@ -81,6 +86,11 @@
Include="$(ArtifactsBinDir)InProcessRequestHandler\$(NativePlatform)\$(Configuration)\aspnetcorev2_inprocess.dll" />
</ItemGroup>

<Target Name="_ResolveCopyLocalNativeReference">
<ItemGroup>
<ReferenceCopyLocalPaths Include="@(NativeRuntimeAsset)" />
</ItemGroup>
</Target>

<Target Name="_WarnAboutUnbuiltNativeDependencies"
BeforeTargets="Build"
Expand Down
Loading