forked from BornToBeRoot/NETworkManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssemblyInfo.cs
More file actions
34 lines (29 loc) · 872 Bytes
/
Copy pathAssemblyInfo.cs
File metadata and controls
34 lines (29 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
namespace NETworkManager.Settings;
/// <summary>
/// Class contains information about the current executing assembly.
/// </summary>
public class AssemblyInfo
{
/// <summary>
/// Creates a new instance of the <see cref="AssemblyInfo" /> class.
/// </summary>
public AssemblyInfo()
{
}
/// <summary>
/// Version of the current executing assembly.
/// Like "2022.12.24.0".
/// </summary>
public Version Version { get; set; }
/// <summary>
/// Location of the current executing assembly.
/// Like "C:\Program Files\NETworkManager\NETworkManager.exe".
/// </summary>
public string Location { get; set; }
/// <summary>
/// Name of the current executing assembly.
/// Like "NETworkManager".
/// </summary>
public string Name { get; set; }
}