From f27ce86bdbac862999086a50838e3eb04650d53a Mon Sep 17 00:00:00 2001 From: nikitalita <69168929+nikitalita@users.noreply.github.com> Date: Mon, 23 Jun 2025 12:53:58 -0700 Subject: [PATCH] Make TargetFramework and TargetServices public --- .../CSharp/ProjectDecompiler/TargetFramework.cs | 2 +- .../CSharp/ProjectDecompiler/TargetServices.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetFramework.cs b/ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetFramework.cs index 66279bbd3..b24cd9ba2 100644 --- a/ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetFramework.cs +++ b/ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetFramework.cs @@ -24,7 +24,7 @@ namespace ICSharpCode.Decompiler.CSharp.ProjectDecompiler /// /// A class describing the target framework of a module. /// - sealed class TargetFramework + public class TargetFramework { const string DotNetPortableIdentifier = ".NETPortable"; diff --git a/ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetServices.cs b/ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetServices.cs index adbf96fc4..61b3ad39d 100644 --- a/ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetServices.cs +++ b/ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetServices.cs @@ -28,7 +28,7 @@ namespace ICSharpCode.Decompiler.CSharp.ProjectDecompiler /// /// Helper services for determining the target framework and platform of a module. /// - static class TargetServices + public static class TargetServices { const string VersionToken = "Version="; const string ProfileToken = "Profile=";