Fix a few places that hardcoded the target framework to use the current .NET version instead. (#19403)

This commit is contained in:
Rolf Bjarne Kvinge 2023-11-09 16:24:04 +01:00 коммит произвёл GitHub
Родитель 88ae3b0834
Коммит 8100be8aff
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-ios</TargetFramework>
<TargetFramework>net$(BundledNETCoreAppTargetFrameworkVersion)-ios</TargetFramework>
<RuntimeIdentifier>ios-arm64</RuntimeIdentifier>
<OutputType>Exe</OutputType>
<CustomBeforeMicrosoftCommonTargets>$(CustomBeforeMicrosoftCommonTargets);$(MSBuildThisFileDirectory)../../../tests/common/SupportedOSPlatformVersions.targets</CustomBeforeMicrosoftCommonTargets>

Просмотреть файл

@ -3,7 +3,7 @@ TOP=../..
include $(TOP)/Make.config
include $(TOP)/mk/rules.mk
BUILD_DIR=bin/Debug/net8.0
BUILD_DIR=bin/Debug/$(DOTNET_TFM)
DOTNET_TARGETS += \
$(BUILD_DIR)/dotnet-linker.dll \