Browse Source

Make TargetFramework and TargetServices public

pull/3501/head
nikitalita 10 hours ago
parent
commit
f27ce86bdb
  1. 2
      ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetFramework.cs
  2. 2
      ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetServices.cs

2
ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetFramework.cs

@ -24,7 +24,7 @@ namespace ICSharpCode.Decompiler.CSharp.ProjectDecompiler @@ -24,7 +24,7 @@ namespace ICSharpCode.Decompiler.CSharp.ProjectDecompiler
/// <summary>
/// A class describing the target framework of a module.
/// </summary>
sealed class TargetFramework
public class TargetFramework
{
const string DotNetPortableIdentifier = ".NETPortable";

2
ICSharpCode.Decompiler/CSharp/ProjectDecompiler/TargetServices.cs

@ -28,7 +28,7 @@ namespace ICSharpCode.Decompiler.CSharp.ProjectDecompiler @@ -28,7 +28,7 @@ namespace ICSharpCode.Decompiler.CSharp.ProjectDecompiler
/// <summary>
/// Helper services for determining the target framework and platform of a module.
/// </summary>
static class TargetServices
public static class TargetServices
{
const string VersionToken = "Version=";
const string ProfileToken = "Profile=";

Loading…
Cancel
Save