blob: c079c34bcb839505a9c0a276bb36512e25c6072c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
using Microsoft.Win32;
namespace FakeCMD
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine($"Microsoft Windows [Version {Environment.OSVersion.Version}]");
Console.WriteLine("(c) 2020 Microsoft Corporation. All rights reserved.");
#if DEBUG
Console.WriteLine("\nYou are running .NET {0}", Environment.Version.ToString());
#endif
Console.ReadLine();
}
}
}
|