Skip to content

Commit

Permalink
[Touch.Client] Use the right TargetFrameworks. (#91)
Browse files Browse the repository at this point in the history
.NET 5 has added support for our TargetFrameworks, so let's start using them.
  • Loading branch information
rolfbjarne committed Aug 27, 2020
1 parent 40f47db commit fd0e576
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Touch.Client/dotnet/iOS/Touch.Client-iOS.dotnet.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.iOS.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net5.0-ios</TargetFramework>
<DefineConstants>NUNITLITE_NUGET</DefineConstants>
<LangVersion>latest</LangVersion>
<!-- 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 -->
Expand Down
2 changes: 1 addition & 1 deletion Touch.Client/dotnet/tvOS/Touch.Client-tvOS.dotnet.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.tvOS.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net5.0-tvos</TargetFramework>
<DefineConstants>NUNITLITE_NUGET</DefineConstants>
<LangVersion>latest</LangVersion>
<!-- 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 -->
Expand Down

0 comments on commit fd0e576

Please sign in to comment.