FakeCMD/Program.cs

19 lines
477 B
C#
Raw Normal View History

2021-01-09 11:18:26 -05:00
using System;
using Microsoft.Win32;
namespace FakeCMD
{
class Program
{
static void Main(string[] args)
{
2021-01-09 12:52:15 -05:00
Console.WriteLine($"Microsoft Windows [Version {Environment.OSVersion.Version}]");
Console.WriteLine("(c) 2020 Microsoft Corporation. All rights reserved.");
#if DEBUG
2021-01-09 12:52:15 -05:00
Console.WriteLine("\nYou are running .NET {0}", Environment.Version.ToString());
#endif
Console.ReadLine();
2021-01-09 11:18:26 -05:00
}
}
}