Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit fd0e576

Browse files
authored
[Touch.Client] Use the right TargetFrameworks. (#91)
.NET 5 has added support for our TargetFrameworks, so let's start using them.
1 parent 40f47db commit fd0e576

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Touch.Client/dotnet/iOS/Touch.Client-iOS.dotnet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.iOS.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFramework>net5.0-ios</TargetFramework>
55
<DefineConstants>NUNITLITE_NUGET</DefineConstants>
66
<LangVersion>latest</LangVersion>
77
<!-- Currently, NuGet is not able to restore existing Xamarin.iOS packages for a .NET 5 project, so use AssetTargetFallback to tell NuGet that the existing packages work -->

Touch.Client/dotnet/tvOS/Touch.Client-tvOS.dotnet.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.tvOS.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFramework>net5.0-tvos</TargetFramework>
55
<DefineConstants>NUNITLITE_NUGET</DefineConstants>
66
<LangVersion>latest</LangVersion>
77
<!-- Currently, NuGet is not able to restore existing Xamarin.TVOS packages for a .NET 5 project, so use AssetTargetFallback to tell NuGet that the existing packages work -->

0 commit comments

Comments
 (0)