File: Program.cs
Web Access
Project: ..\..\..\test\Microsoft.DotNet.PackageInstall.Tests\SampleGlobalTool\consoledemo.csproj (consoledemo)
using System;
using System.Collections.Generic;
 
namespace consoledemo
{
    class Program
    {
        static void Main(string[] args)
        {
            var greeting = "Hello World from Global Tool";
            Console.WriteLine(greeting);
        }
    }
}