tgstation-server  4.4.0
The /tg/station 13 server suite
PlatformIdentifier.cs
Go to the documentation of this file.
1 using System.Runtime.InteropServices;
2 
3 namespace Tgstation.Server.Host.System
4 {
7  {
9  public bool IsWindows { get; }
10 
12  public string ScriptFileExtension { get; }
13 
18  {
19  IsWindows = RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
20  ScriptFileExtension = IsWindows ? "bat" : "sh";
21  }
22  }
23 }
PlatformIdentifier()
Construct a PlatformIdentifier
For identifying the current platform