Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AssemblyVersionAttribute.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
3[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
5{
6 public string Version { get; }
7
8 public AssemblyVersionAttribute(string version)
9 {
10 Version = version;
11 }
12}