Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TargetFrameworkAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false, Inherited = false)]
5{
6 private readonly string _frameworkName;
7
8 private string _frameworkDisplayName;
9
10 public string FrameworkName => _frameworkName;
11
12 public string? FrameworkDisplayName
13 {
14 get
15 {
17 }
18 set
19 {
21 }
22 }
23
24 public TargetFrameworkAttribute(string frameworkName)
25 {
26 if (frameworkName == null)
27 {
28 throw new ArgumentNullException("frameworkName");
29 }
30 _frameworkName = frameworkName;
31 }
32}