Changing the FirstNoticeSentinel used by the internal-reportinstallsuccess command.

This commit is contained in:
Livar Cunha 2017-07-26 15:33:48 -07:00
parent 015af46c99
commit 6541a16a38

View file

@ -43,7 +43,7 @@ namespace Microsoft.DotNet.Cli
{
var sessionId =
Environment.GetEnvironmentVariable(TelemetrySessionIdEnvironmentVariableName);
telemetry = new Telemetry(new FirstTimeUseNoticeSentinel(new CliFallbackFolderPathCalculator()), sessionId);
telemetry = new Telemetry(new NoOpFirstTimeUseNoticeSentinel(), sessionId);
}
public bool Enabled => telemetry.Enabled;