CCNet.Build.Common.Execute.ReportLink C# (CSharp) Method

ReportLink() public static method

Reports URL to be displayed for the current project.
public static ReportLink ( string url, string image ) : void
url string
image string
return void
		public static void ReportLink(string url, string image)
		{
			Console.WriteLine(
				"[LINK] {0} | {1}",
				url,
				image);
		}
	}