dotnet-installer/TestAssets/TestProjects/PerformanceTestProjects/TwoTargetGraphLarge/TwoTargetLargeP2/Program.cs

14 lines
233 B
C#
Raw Normal View History

2016-04-22 17:06:55 -07:00
using System;
2016-04-27 08:44:12 -07:00
namespace ConsoleLibrary.P2
2016-04-22 17:06:55 -07:00
{
public class Program
{
public static void Main()
{
2016-04-27 08:44:12 -07:00
ConsoleLibrary.P3.Program.Main();
ConsoleLibrary.P4.Program.Main();
2016-04-22 17:06:55 -07:00
}
}
}