Skip to content

Commit c61e327

Browse files
authored
[release/8.0.1xx-preview1] [dotnet-linker] Make this a .NET 7 app to work around the fact that the linker is still a .NET 7 app. (#17560)
Hopefully works around dotnet/runtime#82241.
1 parent bce6442 commit c61e327

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/dotnet-linker/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ TOP=../..
33
include $(TOP)/Make.config
44
include $(TOP)/mk/rules.mk
55

6-
BUILD_DIR=bin/Debug/net8.0
6+
BUILD_DIR=bin/Debug/net7.0
77

88
DOTNET_TARGETS += \
99
$(BUILD_DIR)/dotnet-linker.dll \

tools/dotnet-linker/dotnet-linker.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net7.0</TargetFramework>
44
<RootNamespace>dotnet_linker</RootNamespace>
55
<DefineConstants>$(DefineConstants);BUNDLER</DefineConstants>
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

0 commit comments

Comments
 (0)