Skip to content

Commit 3e1c857

Browse files
Merge pull request icsharpcode#3501 from nikitalita/public-target-services
Make TargetFramework and TargetServices public
2 parents f311afa + f27ce86 commit 3e1c857

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetFramework.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace ICSharpCode.Decompiler.CSharp.ProjectDecompiler
2424
/// <summary>
2525
/// A class describing the target framework of a module.
2626
/// </summary>
27-
sealed class TargetFramework
27+
public class TargetFramework
2828
{
2929
const string DotNetPortableIdentifier = ".NETPortable";
3030

ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetServices.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace ICSharpCode.Decompiler.CSharp.ProjectDecompiler
2828
/// <summary>
2929
/// Helper services for determining the target framework and platform of a module.
3030
/// </summary>
31-
static class TargetServices
31+
public static class TargetServices
3232
{
3333
const string VersionToken = "Version=";
3434
const string ProfileToken = "Profile=";

0 commit comments

Comments
 (0)