Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Shields <directhex@apebox.org>2021-07-08 22:29:30 +0300
committerGitHub <noreply@github.com>2021-07-08 22:29:30 +0300
commitd841f5e17897be5ef6aef5031b8a03ed3d8fd8dd (patch)
tree6a43274bc74503a425fa14e804b0347d4d94a118 /eng/liveBuilds.targets
parentab64ce5f71479549222c99da3a15fd56f8328fe4 (diff)
Ship a .framework version of Mono (#53370)
Additionally ship Mono on iOS/tvOS/MacCatalyst as a .framework bundle Fixes #42846
Diffstat (limited to 'eng/liveBuilds.targets')
-rw-r--r--eng/liveBuilds.targets2
1 files changed, 2 insertions, 0 deletions
diff --git a/eng/liveBuilds.targets b/eng/liveBuilds.targets
index 01a0c6aac67..fb05c25a395 100644
--- a/eng/liveBuilds.targets
+++ b/eng/liveBuilds.targets
@@ -109,6 +109,8 @@
<IsNative>true</IsNative>
</RuntimeFiles>
+ <FrameworkReleaseFiles Condition="'$(TargetsMacCatalyst)' == 'true' or '$(TargetsiOS)' == 'true' or '$(TargetstvOS)' == 'true'" Include="$(MonoArtifactsPath)\Mono.release.framework\*.*" />
+ <FrameworkDebugFiles Condition="'$(TargetsMacCatalyst)' == 'true' or '$(TargetsiOS)' == 'true' or '$(TargetstvOS)' == 'true'" Include="$(MonoArtifactsPath)\Mono.debug.framework\*.*" />
<MonoIncludeFiles Condition="'$(TargetsMobile)' == 'true'"
Include="$(MonoArtifactsPath)\include\**\*.*" />
</ItemGroup>