dotnet-installer/packaging/windows/Dotnet.Cli.Msi.Tests/Program.cs
Sridhar Periyasamy e131be5aaa Unit tests for Dotnet MSI
- Needs a clean machine without dotnet MSI installed for the tests to run.
- Needs admin privileges to run. Else test script exits silently.
- These xunit based tests run on Netfx46.

For now these tests are disabled until I figure out the right way to run
them in the CI machines.
2015-11-24 17:48:58 -08:00

17 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;
}
}
}