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:
authorMarek Safar <marek.safar@gmail.com>2021-04-05 10:08:50 +0300
committerGitHub <noreply@github.com>2021-04-05 10:08:50 +0300
commit95201492e7665c7f21faf42e9d544396ff714497 (patch)
tree4d05eb5f06ce562cda3412141dad8b5a412f4ff0 /eng/versioning.targets
parente93dff4265177329845a1fe65c9ec4d1e01388f7 (diff)
Update ref assemblies libraries unsupported on mobile (#50616)
* Update ref assemblies libraries unsupported on mobile * Add tvOS to known platforms list
Diffstat (limited to 'eng/versioning.targets')
-rw-r--r--eng/versioning.targets5
1 files changed, 3 insertions, 2 deletions
diff --git a/eng/versioning.targets b/eng/versioning.targets
index cf0f497a109..02a10237e41 100644
--- a/eng/versioning.targets
+++ b/eng/versioning.targets
@@ -36,10 +36,11 @@
<CrossPlatformAndHasNoBrowserTarget>true</CrossPlatformAndHasNoBrowserTarget>
</PropertyGroup>
- <!-- Enables warnings for Android, iOS, and macCatalyst for all builds -->
+ <!-- Enables warnings for Android, iOS, tvOS and macCatalyst for all builds -->
<ItemGroup>
<SupportedPlatform Include="Android" />
<SupportedPlatform Include="iOS" />
+ <SupportedPlatform Include="tvOS" />
<SupportedPlatform Include="macCatalyst" />
</ItemGroup>
@@ -47,7 +48,7 @@
<ItemGroup Condition="('$(TargetsBrowser)' == 'true' or '$(CrossPlatformAndHasNoBrowserTarget)' == 'true') and '$(IsTestProject)' != 'true'">
<SupportedPlatform Include="browser"/>
</ItemGroup>
-
+
<!-- Add target platforms into MSBuild SupportedPlatform list -->
<ItemGroup Condition="'$(TargetsAnyOS)' != 'true' and '$(IsTestProject)' != 'true'">
<SupportedPlatform Condition="'$(Targetsillumos)' == 'true'" Include="illumos"/>