dotnet-installer/TestAssets/NonRestoredTestProjects/DotnetAddP2PProjects/Lib4/Lib4.cs
2016-11-22 14:45:29 -08:00

21 lines
371 B
C#

using System;
namespace NSLib4
{
public class Lib4
{
#if NETCOREAPP1_0
public static void HelloNCA()
{
Console.WriteLine("Hello World from Lib4! (netcoreapp)");
}
#endif
#if NET451
public static void HelloNet451()
{
Console.WriteLine("Hello World from Lib4! (net45)");
}
#endif
}
}