2016-03-28 09:32:31 +00:00
|
|
|
|
using System;
|
2016-04-06 18:52:48 +00:00
|
|
|
|
using System.Reflection;
|
2016-03-28 09:32:31 +00:00
|
|
|
|
|
|
|
|
|
namespace ConsoleApplication
|
|
|
|
|
{
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
#if NET451
|
2016-03-28 11:18:59 +00:00
|
|
|
|
Console.WriteLine($"Hello {string.Join(" ", args)} From .NETFramework,Version=v4.5.1");
|
2016-04-13 00:29:07 +00:00
|
|
|
|
#elif NETCOREAPP1_0
|
|
|
|
|
Console.WriteLine($"Hello {string.Join(" ", args)} From .NETCoreApp,Version=v1.0");
|
2016-03-28 09:32:31 +00:00
|
|
|
|
#endif
|
2016-04-06 18:52:48 +00:00
|
|
|
|
var currentAssemblyPath = typeof(ConsoleApplication.Program).GetTypeInfo().Assembly.Location;
|
|
|
|
|
Console.WriteLine($"Current Assembly Directory - {currentAssemblyPath}");
|
2016-03-28 09:32:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|