dotnet-installer/src/Microsoft.DotNet.Runtime/Program.cs

12 lines
235 B
C#
Raw Normal View History

namespace Microsoft.DotNet.Runtime
{
public class Program
{
public static int Main(string[] args)
{
// Temporary and bogus. Just needed so we can publish this
return 1;
}
}
}