blob: fbb4c432932f071756dfc3ef2ab90cc8d2987ea4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
The .NET SDK does not support project-to-project dependencies
with native binary dependencies, so we need to add them manually.
Patch Project.deps.json by adding the required depencies to
Djup.Native "runtimeTargets" section.
-->
<!-- https://github.com/dotnet/sdk/issues/19929 -->
<Target Name="AddRuntimeTargetsToDepsJson" AfterTargets="AfterBuild">
<Exec Command="$(MSBuildThisFileDirectory)patch-deps.sh '$(OutputPath)'" />
</Target>
</Project>
|