Merge pull request #2328 from danquirk/MoveTelemetryToDotNet

Move telemetry dependency out of Utils and into dotnet
This commit is contained in:
Piotr Puszkiewicz 2016-04-11 15:17:19 -07:00
commit a7ae7b0091
4 changed files with 4 additions and 3 deletions

View file

@ -5,7 +5,6 @@
"warningsAsErrors": true
},
"dependencies": {
"Microsoft.ApplicationInsights": "2.0.0-rc1",
"Microsoft.DotNet.ProjectModel": "1.0.0-*",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-20459",
"NuGet.Versioning": "3.5.0-beta-1130",

View file

@ -4,7 +4,7 @@
using System;
using System.Collections.Generic;
namespace Microsoft.DotNet.Cli.Utils
namespace Microsoft.DotNet.Cli
{
public interface ITelemetry
{

View file

@ -1,10 +1,11 @@
using System;
using System.Collections.Generic;
using Microsoft.ApplicationInsights;
using Microsoft.DotNet.Cli.Utils;
using Microsoft.Extensions.PlatformAbstractions;
using System.Diagnostics;
namespace Microsoft.DotNet.Cli.Utils
namespace Microsoft.DotNet.Cli
{
public class Telemetry : ITelemetry
{

View file

@ -25,6 +25,7 @@
"System.Text.Encoding.CodePages": "4.0.1-rc2-24008",
"System.Diagnostics.FileVersionInfo": "4.0.0-rc2-24008",
"System.CommandLine": "0.1.0-e160323-1",
"Microsoft.ApplicationInsights": "2.0.0",
"Microsoft.DotNet.ProjectModel": "1.0.0-*",
"Microsoft.DotNet.Compiler.Common": "1.0.0-*",
"Microsoft.DotNet.Cli.Utils": "1.0.0-*",