dotnet-installer/TestAssets/NonRestoredTestProjects/DotnetAddP2PProjects/App/Program.cs

22 lines
335 B
C#
Raw Normal View History

using NSLib1;
using NSLib3;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
{
#if NETCOREAPP1_0
Lib1.HelloNCA();
Lib3.HelloNCA();
#endif
#if NET451
Lib1.HelloNet451();
Lib3.HelloNet451();
#endif
}
}
}