Browse Source

Make TargetFramework and TargetServices public

pull/3501/head
nikitalita 10 months 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
/// <summary> /// <summary>
/// A class describing the target framework of a module. /// A class describing the target framework of a module.
/// </summary> /// </summary>
sealed class TargetFramework public class TargetFramework
{ {
const string DotNetPortableIdentifier = ".NETPortable"; const string DotNetPortableIdentifier = ".NETPortable";

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

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

Loading…
Cancel
Save