Browse Source

Merge pull request #3501 from nikitalita/public-target-services

Make TargetFramework and TargetServices public
pull/3472/merge
Siegfried Pammer 2 weeks ago committed by GitHub
parent
commit
3e1c8570c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  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