18 lines
371 B
C#
18 lines
371 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Dotnet.Cli.Msi.Tests
|
|||
|
{
|
|||
|
class Program
|
|||
|
{
|
|||
|
// A main method is currently required because of https://github.com/dotnet/cli/issues/314
|
|||
|
public static void Main(string[] args)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|