Use InternalsVisibleTo for testing

This commit is contained in:
Dan Quirk 2016-04-04 17:33:09 -07:00
parent 3e4edf1688
commit b5e1042d06
2 changed files with 4 additions and 1 deletions

View file

@ -43,7 +43,7 @@ namespace Microsoft.DotNet.Cli
}
public int ProcessArgs(string[] args, ITelemetry telemetryClient)
internal int ProcessArgs(string[] args, ITelemetry telemetryClient)
{
// CommandLineApplication is a bit restrictive, so we parse things ourselves here. Individual apps should use CLA.

View file

@ -0,0 +1,3 @@
using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("dotnet.Tests")]