This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,47 @@
using System;
using Cpp2IlInjected;
namespace System.Runtime.Versioning
{
/// <summary>Identifies the version of the .NET Framework that a particular assembly was compiled against.</summary>
// Token: 0x02000435 RID: 1077
[Token(Token = "0x2000435")]
[AttributeUsage(AttributeTargets.Assembly)]
public sealed class TargetFrameworkAttribute : Attribute
{
/// <summary>Initializes an instance of the <see cref="T:System.Runtime.Versioning.TargetFrameworkAttribute" /> class by specifying the .NET Framework version against which an assembly was built.</summary>
/// <param name="frameworkName">The version of the .NET Framework against which the assembly was built.</param>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="frameworkName" /> is <see langword="null" />.</exception>
// Token: 0x0600245C RID: 9308 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600245C")]
[Address(RVA = "0x29A06C0", Offset = "0x299F4C0", VA = "0x1829A06C0")]
public TargetFrameworkAttribute(string frameworkName)
{
}
/// <summary>Gets the display name of the .NET Framework version against which an assembly was built.</summary>
/// <returns>The display name of the .NET Framework version.</returns>
// Token: 0x17000504 RID: 1284
// (set) Token: 0x0600245D RID: 9309 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000504")]
public string FrameworkDisplayName
{
[Token(Token = "0x600245D")]
[Address(RVA = "0x3F7210", Offset = "0x3F6010", VA = "0x1803F7210")]
set
{
}
}
// Token: 0x0400148A RID: 5258
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400148A")]
private string _frameworkName;
// Token: 0x0400148B RID: 5259
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400148B")]
private string _frameworkDisplayName;
}
}