.Net Core アプリ実行時、OS毎に処理を分けたい場合、RuntimeInformation.IsOSPlatform() でOSを判定し処理を分ける。
ソースコードはGitHubで公開しています。
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 35 36 37 38 39 40 41 42 43 44 45 46 |
using System; using System.Runtime.InteropServices; namespace ConsoleApp1 { class Program { static void Main(string[] args) { if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { //OS毎の処理 Console.WriteLine("OS is Windows."); Console.WriteLine(RuntimeInformation.OSDescription); } else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) { //OS毎の処理 Console.WriteLine("OS is Linux."); Console.WriteLine(RuntimeInformation.OSDescription); } else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) { //OS毎の処理 Console.WriteLine("OS is OSX."); Console.WriteLine(RuntimeInformation.OSDescription); } else if (RuntimeInformation.IsOSPlatform(OSPlatform.FreeBSD)) { //OS毎の処理 Console.WriteLine("OS is FreeBSD."); Console.WriteLine(RuntimeInformation.OSDescription); } } } } |
コメント